aboutsummaryrefslogtreecommitdiff
path: root/azalea/src/bot.rs
diff options
context:
space:
mode:
authormat <git@matdoes.dev>2025-10-04 12:52:57 -0300
committermat <git@matdoes.dev>2025-10-04 12:52:57 -0300
commit43f20b821ce26af148156e705f4c1fd3f956beb5 (patch)
treebfe797e92cd496f4cee59bb078d378909a3823ed /azalea/src/bot.rs
parenta7e2f92b169d6079ba09b2190fefd2d539024a68 (diff)
downloadazalea-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.rs4
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),
);
}