diff options
| -rw-r--r-- | azalea-client/src/packet_handling/game.rs | 3 |
1 files changed, 2 insertions, 1 deletions
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::<crate::JoinedClientBundle>(); + + system_state.apply(ecs); } ClientboundGamePacket::SelectAdvancementsTab(_) => {} |
