From d88ca2d86530e48f60fc1ff275de15a96e2a1779 Mon Sep 17 00:00:00 2001 From: EightFactorial Date: Tue, 21 Feb 2023 10:13:06 -0800 Subject: Make things public (#71) * Make struct data pub * Add derives * Rename packet fields * Make Palette structs pub --- azalea-protocol/src/packets/game/serverbound_chat_packet.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'azalea-protocol/src/packets/game/serverbound_chat_packet.rs') diff --git a/azalea-protocol/src/packets/game/serverbound_chat_packet.rs b/azalea-protocol/src/packets/game/serverbound_chat_packet.rs index 1912d6a0..a19a9aa7 100755 --- a/azalea-protocol/src/packets/game/serverbound_chat_packet.rs +++ b/azalea-protocol/src/packets/game/serverbound_chat_packet.rs @@ -15,6 +15,6 @@ pub struct ServerboundChatPacket { #[derive(Clone, Debug, McBuf, Default)] pub struct LastSeenMessagesUpdate { #[var] - pub offset: u32, + pub messages: u32, pub acknowledged: FixedBitSet<20>, } -- cgit v1.2.3