aboutsummaryrefslogtreecommitdiff
path: root/azalea-protocol/src/packets/game/serverbound_chat_packet.rs
diff options
context:
space:
mode:
Diffstat (limited to 'azalea-protocol/src/packets/game/serverbound_chat_packet.rs')
-rwxr-xr-xazalea-protocol/src/packets/game/serverbound_chat_packet.rs20
1 files changed, 0 insertions, 20 deletions
diff --git a/azalea-protocol/src/packets/game/serverbound_chat_packet.rs b/azalea-protocol/src/packets/game/serverbound_chat_packet.rs
deleted file mode 100755
index e0a1726c..00000000
--- a/azalea-protocol/src/packets/game/serverbound_chat_packet.rs
+++ /dev/null
@@ -1,20 +0,0 @@
-use azalea_buf::McBuf;
-use azalea_core::bitset::FixedBitSet;
-use azalea_crypto::MessageSignature;
-use azalea_protocol_macros::ServerboundGamePacket;
-
-#[derive(Clone, Debug, McBuf, ServerboundGamePacket)]
-pub struct ServerboundChatPacket {
- pub message: String,
- pub timestamp: u64,
- pub salt: u64,
- pub signature: Option<MessageSignature>,
- pub last_seen_messages: LastSeenMessagesUpdate,
-}
-
-#[derive(Clone, Debug, McBuf, Default)]
-pub struct LastSeenMessagesUpdate {
- #[var]
- pub messages: u32,
- pub acknowledged: FixedBitSet<20>,
-}