From eeaf1435e81d9cbd8daa0efa22029c1f259a64b5 Mon Sep 17 00:00:00 2001 From: mat <27899617+mat-1@users.noreply.github.com> Date: Tue, 24 Mar 2026 11:15:56 -0500 Subject: 26.1 (#316) * start updating to 26.1 * start updating to 26.1-snapshot-6 * 26.1-snapshot-6 * 26.1-snapshot-10 * 26.1-rc-1 * fix tests * 26.1-rc-2 and sort default components * 26.1 * update changelog --- azalea-client/src/plugins/packet/game/mod.rs | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'azalea-client/src/plugins/packet') diff --git a/azalea-client/src/plugins/packet/game/mod.rs b/azalea-client/src/plugins/packet/game/mod.rs index ecc1bc2f..f1bff086 100644 --- a/azalea-client/src/plugins/packet/game/mod.rs +++ b/azalea-client/src/plugins/packet/game/mod.rs @@ -197,6 +197,8 @@ pub fn process_packet(ecs: &mut World, player: Entity, packet: &ClientboundGameP debug_entity_value, debug_event, game_test_highlight_pos, + low_disk_space_warning, + game_rule_values, ] ); } @@ -1644,6 +1646,14 @@ impl GamePacketHandler<'_> { pub fn game_test_highlight_pos(&mut self, p: &ClientboundGameTestHighlightPos) { debug!("Got game test highlight pos packet {p:?}"); } + + pub fn low_disk_space_warning(&mut self, p: &ClientboundLowDiskSpaceWarning) { + debug!("Got low disk space warning packet {p:?}"); + } + + pub fn game_rule_values(&mut self, p: &ClientboundGameRuleValues) { + debug!("Got game rule values packet {p:?}"); + } } struct MoveEntity { -- cgit v1.2.3