diff options
| author | mat <git@matdoes.dev> | 2024-02-23 23:43:41 -0600 |
|---|---|---|
| committer | mat <git@matdoes.dev> | 2024-02-23 23:43:41 -0600 |
| commit | 5c85158e7ca6bbd357be520029326c08d456a107 (patch) | |
| tree | 9603919e44c687d7ca8b2ba20d36cf142a55e53e | |
| parent | 28de14f9843e4ae26ed16e938f4d179b58122d76 (diff) | |
| download | azalea-drasl-5c85158e7ca6bbd357be520029326c08d456a107.tar.xz | |
fix 'CommandQueue has un-applied commands being dropped.' spam
| -rw-r--r-- | azalea-client/src/packet_handling/game.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/azalea-client/src/packet_handling/game.rs b/azalea-client/src/packet_handling/game.rs index 080ef270..bd88258a 100644 --- a/azalea-client/src/packet_handling/game.rs +++ b/azalea-client/src/packet_handling/game.rs @@ -748,6 +748,7 @@ pub fn process_packet_events(ecs: &mut World) { { warn!("{e}"); } + commands_system_state.apply(world); }); }), }); |
