From 12a9c8ce65b58f0c600fd7b9fc5d454ce228b420 Mon Sep 17 00:00:00 2001 From: mat <27899617+mat-1@users.noreply.github.com> Date: Tue, 14 Mar 2023 16:33:03 -0500 Subject: 1.19.4 (#57) * 23w03a * 23w04a * 23w05a * 23w06a * fix * 23w07a mojang broke their json data generator so some stuff is missing * didn't mean to commit that file here * 1.19.4-pre2 * fix * 1.19.4-pre3 * fix * how did these packets get here * 1.19.4-pre4 * 1.19.4-rc1 * 1.19.4-rc2 * 1.19.4-rc3 * merge main * remove debugging code * 1.19.4 --- azalea-client/src/packet_handling.rs | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) (limited to 'azalea-client/src') diff --git a/azalea-client/src/packet_handling.rs b/azalea-client/src/packet_handling.rs index 1a75998b..8a99c05c 100644 --- a/azalea-client/src/packet_handling.rs +++ b/azalea-client/src/packet_handling.rs @@ -481,6 +481,10 @@ fn process_packet_events(ecs: &mut World) { partial_world.chunks.view_center = ChunkPos::new(p.x, p.z); } + ClientboundGamePacket::ChunksBiomes(_) => {} + ClientboundGamePacket::LightUpdate(_p) => { + // debug!("Got light update packet {:?}", p); + } ClientboundGamePacket::LevelChunkWithLight(p) => { debug!("Got chunk with light packet {} {}", p.x, p.z); let pos = ChunkPos::new(p.x, p.z); @@ -528,9 +532,6 @@ fn process_packet_events(ecs: &mut World) { error!("Couldn't set chunk data: {}", e); } } - ClientboundGamePacket::LightUpdate(_p) => { - // debug!("Got light update packet {:?}", p); - } ClientboundGamePacket::AddEntity(p) => { debug!("Got add entity packet {:?}", p); @@ -908,6 +909,7 @@ fn process_packet_events(ecs: &mut World) { system_state.apply(ecs); } + ClientboundGamePacket::SelectAdvancementsTab(_) => {} ClientboundGamePacket::SetActionBarText(_) => {} ClientboundGamePacket::SetBorderCenter(_) => {} @@ -933,6 +935,9 @@ fn process_packet_events(ecs: &mut World) { ClientboundGamePacket::DisguisedChat(_) => {} ClientboundGamePacket::UpdateEnabledFeatures(_) => {} ClientboundGamePacket::ContainerClose(_) => {} + ClientboundGamePacket::Bundle(_) => {} + ClientboundGamePacket::DamageEvent(_) => {} + ClientboundGamePacket::HurtAnimation(_) => {} } } } -- cgit v1.2.3