From 2c8b7c5c2c9297273abfba8f7743f1bc25f166b1 Mon Sep 17 00:00:00 2001 From: mat Date: Sun, 28 Sep 2025 13:10:04 -0545 Subject: upgrade bevy to 0.17.0-rc.2 --- azalea-entity/src/plugin/mod.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'azalea-entity/src/plugin') diff --git a/azalea-entity/src/plugin/mod.rs b/azalea-entity/src/plugin/mod.rs index 95fcb93f..e20ed860 100644 --- a/azalea-entity/src/plugin/mod.rs +++ b/azalea-entity/src/plugin/mod.rs @@ -25,7 +25,7 @@ use crate::{ /// A Bevy [`SystemSet`] for various types of entity updates. #[derive(SystemSet, Debug, Hash, Eq, PartialEq, Clone)] -pub enum EntityUpdateSet { +pub enum EntityUpdateSystems { /// Create search indexes for entities. Index, /// Remove despawned entities from search indexes. @@ -42,7 +42,7 @@ impl Plugin for EntityPlugin { // despawned post-update (done by this plugin) app.add_systems( PostUpdate, - indexing::remove_despawned_entities_from_indexes.in_set(EntityUpdateSet::Deindex), + indexing::remove_despawned_entities_from_indexes.in_set(EntityUpdateSystems::Deindex), ) .add_systems( Update, @@ -52,7 +52,7 @@ impl Plugin for EntityPlugin { indexing::insert_entity_chunk_position, ) .chain() - .in_set(EntityUpdateSet::Index), + .in_set(EntityUpdateSystems::Index), ( relative_updates::debug_detect_updates_received_on_local_entities, debug_new_entity, -- cgit v1.2.3