diff options
| author | mat <git@matdoes.dev> | 2025-10-04 12:52:57 -0300 |
|---|---|---|
| committer | mat <git@matdoes.dev> | 2025-10-04 12:52:57 -0300 |
| commit | 43f20b821ce26af148156e705f4c1fd3f956beb5 (patch) | |
| tree | bfe797e92cd496f4cee59bb078d378909a3823ed /azalea-physics/src | |
| parent | a7e2f92b169d6079ba09b2190fefd2d539024a68 (diff) | |
| download | azalea-drasl-43f20b821ce26af148156e705f4c1fd3f956beb5.tar.xz | |
upgrade deps and rename SystemSets to follow bevy's new naming convention
Diffstat (limited to 'azalea-physics/src')
| -rw-r--r-- | azalea-physics/src/lib.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/azalea-physics/src/lib.rs b/azalea-physics/src/lib.rs index 19b58e5c..b49d734c 100644 --- a/azalea-physics/src/lib.rs +++ b/azalea-physics/src/lib.rs @@ -31,7 +31,7 @@ use crate::collision::{MoveCtx, entity_collisions::update_last_bounding_box}; /// A Bevy [`SystemSet`] for running physics that makes entities do things. #[derive(SystemSet, Debug, Hash, PartialEq, Eq, Clone)] -pub struct PhysicsSet; +pub struct PhysicsSystems; pub struct PhysicsPlugin; impl Plugin for PhysicsPlugin { @@ -47,7 +47,7 @@ impl Plugin for PhysicsPlugin { apply_effects_from_blocks, ) .chain() - .in_set(PhysicsSet) + .in_set(PhysicsSystems) .after(azalea_entity::update_in_loaded_chunk), ) // we want this to happen after packets are handled but before physics |
