diff options
Diffstat (limited to 'azalea/src')
| -rw-r--r-- | azalea/src/bot.rs | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/azalea/src/bot.rs b/azalea/src/bot.rs index 522f99eb..539a5281 100644 --- a/azalea/src/bot.rs +++ b/azalea/src/bot.rs @@ -43,7 +43,12 @@ impl Plugin for BotPlugin { jump_listener, ), ) - .add_systems(GameTick, stop_jumping.after(PhysicsSet)); + .add_systems( + GameTick, + stop_jumping + .after(PhysicsSet) + .after(azalea_client::movement::send_player_input_packet), + ); } } |
