diff options
| author | mat <git@matdoes.dev> | 2025-09-28 13:10:04 -0545 |
|---|---|---|
| committer | mat <git@matdoes.dev> | 2025-09-28 13:10:04 -0545 |
| commit | 2c8b7c5c2c9297273abfba8f7743f1bc25f166b1 (patch) | |
| tree | 3d3aded400100c136287fa59293ce26c61644d00 /azalea-entity | |
| parent | e2ed19c1ed92f0dccc881d835d9ac6e0f7f834c0 (diff) | |
| download | azalea-drasl-2c8b7c5c2c9297273abfba8f7743f1bc25f166b1.tar.xz | |
upgrade bevy to 0.17.0-rc.2
Diffstat (limited to 'azalea-entity')
| -rw-r--r-- | azalea-entity/src/plugin/mod.rs | 6 |
1 files changed, 3 insertions, 3 deletions
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, |
