diff options
| author | mat <git@matdoes.dev> | 2025-01-29 05:29:20 +0000 |
|---|---|---|
| committer | mat <git@matdoes.dev> | 2025-01-29 05:29:20 +0000 |
| commit | 6d8d937d47646a930076c2512fe06055d0ca057f (patch) | |
| tree | a017c7f796212458268a0645e613b9bb87578493 /azalea/src | |
| parent | befcec9b3a39fce64b23f31ecb0d56901bc0e1f4 (diff) | |
| download | azalea-drasl-6d8d937d47646a930076c2512fe06055d0ca057f.tar.xz | |
add support for tickend and playerinput
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), + ); } } |
