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/src/bot.rs | |
| 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/src/bot.rs')
| -rw-r--r-- | azalea/src/bot.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/azalea/src/bot.rs b/azalea/src/bot.rs index 5523b7b2..1897f510 100644 --- a/azalea/src/bot.rs +++ b/azalea/src/bot.rs @@ -12,7 +12,7 @@ use azalea_entity::{ Jumping, LocalEntity, LookDirection, Position, clamp_look_direction, dimensions::EntityDimensions, metadata::Player, update_dimensions, }; -use azalea_physics::PhysicsSet; +use azalea_physics::PhysicsSystems; use bevy_app::Update; use bevy_ecs::prelude::*; use futures_lite::Future; @@ -51,7 +51,7 @@ impl Plugin for BotPlugin { .add_systems( GameTick, stop_jumping - .after(PhysicsSet) + .after(PhysicsSystems) .after(azalea_client::movement::send_player_input_packet), ); } |
