aboutsummaryrefslogtreecommitdiff
path: root/azalea-protocol/src/packets/game/serverbound_chat_packet.rs
diff options
context:
space:
mode:
authorEightFactorial <murphkev000@gmail.com>2023-02-21 10:13:06 -0800
committerGitHub <noreply@github.com>2023-02-21 12:13:06 -0600
commitd88ca2d86530e48f60fc1ff275de15a96e2a1779 (patch)
tree4eabf98a6a3e20228bca36ff1984626a6191b62c /azalea-protocol/src/packets/game/serverbound_chat_packet.rs
parent71308ee0a3c2068bd135cd6731feae75710c58f2 (diff)
downloadazalea-drasl-d88ca2d86530e48f60fc1ff275de15a96e2a1779.tar.xz
Make things public (#71)
* Make struct data pub * Add derives * Rename packet fields * Make Palette structs pub
Diffstat (limited to 'azalea-protocol/src/packets/game/serverbound_chat_packet.rs')
-rwxr-xr-xazalea-protocol/src/packets/game/serverbound_chat_packet.rs2
1 files changed, 1 insertions, 1 deletions
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>,
}