From 5c85158e7ca6bbd357be520029326c08d456a107 Mon Sep 17 00:00:00 2001 From: mat Date: Fri, 23 Feb 2024 23:43:41 -0600 Subject: [PATCH] fix 'CommandQueue has un-applied commands being dropped.' spam --- azalea-client/src/packet_handling/game.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/azalea-client/src/packet_handling/game.rs b/azalea-client/src/packet_handling/game.rs index 080ef2701..bd88258ae 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); }); }), });