diff options
| author | mat <git@matdoes.dev> | 2025-06-25 20:06:25 -1000 |
|---|---|---|
| committer | mat <git@matdoes.dev> | 2025-06-25 20:06:25 -1000 |
| commit | 537ec510f025fa9aef628808b056a3e008c0dcb6 (patch) | |
| tree | e5a6427e6839e77d86bb911a1377e0d2aa571543 /azalea-physics | |
| parent | f12589ab809ece7dfd34c58b2ddc67dd5801ccb3 (diff) | |
| download | azalea-drasl-537ec510f025fa9aef628808b056a3e008c0dcb6.tar.xz | |
remove some unused system ordering
Diffstat (limited to 'azalea-physics')
| -rw-r--r-- | azalea-physics/src/lib.rs | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/azalea-physics/src/lib.rs b/azalea-physics/src/lib.rs index d0db3c22..772b9b86 100644 --- a/azalea-physics/src/lib.rs +++ b/azalea-physics/src/lib.rs @@ -39,10 +39,9 @@ impl Plugin for PhysicsPlugin { app.add_systems( GameTick, ( - fluids::update_in_water_state_and_do_fluid_pushing - .before(azalea_entity::update_fluid_on_eyes), + fluids::update_in_water_state_and_do_fluid_pushing, update_old_position, - fluids::update_swimming.after(azalea_entity::update_fluid_on_eyes), + fluids::update_swimming, ai_step, travel::travel, apply_effects_from_blocks, |
