From c9a18bc6a1ae1fb99d7e6320e82c6b7de772ba43 Mon Sep 17 00:00:00 2001 From: mat Date: Thu, 7 Dec 2023 15:55:26 -0600 Subject: apply command in StartConfiguration --- azalea-client/src/packet_handling/game.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/azalea-client/src/packet_handling/game.rs b/azalea-client/src/packet_handling/game.rs index 3edcc5cf..a61120a9 100644 --- a/azalea-client/src/packet_handling/game.rs +++ b/azalea-client/src/packet_handling/game.rs @@ -1388,11 +1388,12 @@ pub fn process_packet_events(ecs: &mut World) { packet: ServerboundConfigurationAcknowledgedPacket {}.get(), }); - // add InConfigurationState commands .entity(player_entity) .insert(crate::client::InConfigurationState) .remove::(); + + system_state.apply(ecs); } ClientboundGamePacket::SelectAdvancementsTab(_) => {} -- cgit v1.2.3