diff options
| author | mat <git@matdoes.dev> | 2023-12-07 15:55:26 -0600 |
|---|---|---|
| committer | mat <git@matdoes.dev> | 2023-12-07 15:55:26 -0600 |
| commit | c9a18bc6a1ae1fb99d7e6320e82c6b7de772ba43 (patch) | |
| tree | 861bb95ca4e03c59742ba1a7e35f9cf1793e71a3 | |
| parent | 26bd9be55f898404137dbf2caa9dcc0b32f140a8 (diff) | |
| download | azalea-drasl-c9a18bc6a1ae1fb99d7e6320e82c6b7de772ba43.tar.xz | |
apply command in StartConfiguration
| -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(_) => {} |
