aboutsummaryrefslogtreecommitdiff
path: root/azalea-protocol/src/packets/game/serverbound_chat_ack_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_ack_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_ack_packet.rs')
-rwxr-xr-xazalea-protocol/src/packets/game/serverbound_chat_ack_packet.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/azalea-protocol/src/packets/game/serverbound_chat_ack_packet.rs b/azalea-protocol/src/packets/game/serverbound_chat_ack_packet.rs
index 998e96d2..eaf285cb 100755
--- a/azalea-protocol/src/packets/game/serverbound_chat_ack_packet.rs
+++ b/azalea-protocol/src/packets/game/serverbound_chat_ack_packet.rs
@@ -4,5 +4,5 @@ use azalea_protocol_macros::ServerboundGamePacket;
#[derive(Clone, Debug, McBuf, ServerboundGamePacket)]
pub struct ServerboundChatAckPacket {
#[var]
- pub offset: u32,
+ pub messages: u32,
}