From ef357fdf3667f3ded03203fc0f7cdec48a01ad8f Mon Sep 17 00:00:00 2001 From: mat <27899617+mat-1@users.noreply.github.com> Date: Tue, 25 Mar 2025 11:17:39 -0500 Subject: 1.21.5 (#198) * 25w02a * move item_components codegen to a different module * remove outdated test * 25w03a * start updating to 24w09b * 1.21.5-pre2 * fix broken packets * 1.21.5-rc2 * merge main * delete unused acket_handling * 1.21.5 --- azalea-client/src/plugins/packet/game/mod.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'azalea-client/src/plugins/packet/game') diff --git a/azalea-client/src/plugins/packet/game/mod.rs b/azalea-client/src/plugins/packet/game/mod.rs index cc67bcd7..6bb93178 100644 --- a/azalea-client/src/plugins/packet/game/mod.rs +++ b/azalea-client/src/plugins/packet/game/mod.rs @@ -57,6 +57,7 @@ pub fn process_packet_events(ecs: &mut World) { ecs, }; + // the order of these doesn't matter, that's decided by the protocol library declare_packet_handlers!( ClientboundGamePacket, packet.as_ref(), @@ -113,7 +114,6 @@ pub fn process_packet_events(ecs: &mut World) { server_data, set_equipment, update_mob_effect, - add_experience_orb, award_stats, block_changed_ack, block_destruction, @@ -193,6 +193,7 @@ pub fn process_packet_events(ecs: &mut World) { recipe_book_add, recipe_book_remove, recipe_book_settings, + test_instance_block_status, ] ); } @@ -1196,8 +1197,6 @@ impl GamePacketHandler<'_> { debug!("Got update mob effect packet {p:?}"); } - pub fn add_experience_orb(&mut self, _p: &ClientboundAddExperienceOrb) {} - pub fn award_stats(&mut self, _p: &ClientboundAwardStats) {} pub fn block_changed_ack(&mut self, _p: &ClientboundBlockChangedAck) {} @@ -1601,4 +1600,5 @@ impl GamePacketHandler<'_> { pub fn recipe_book_add(&mut self, _p: &ClientboundRecipeBookAdd) {} pub fn recipe_book_remove(&mut self, _p: &ClientboundRecipeBookRemove) {} pub fn recipe_book_settings(&mut self, _p: &ClientboundRecipeBookSettings) {} + pub fn test_instance_block_status(&mut self, _p: &ClientboundTestInstanceBlockStatus) {} } -- cgit v1.2.3