aboutsummaryrefslogtreecommitdiff
path: root/azalea-protocol/src/packets/game/clientbound_command_suggestions_packet.rs
diff options
context:
space:
mode:
Diffstat (limited to 'azalea-protocol/src/packets/game/clientbound_command_suggestions_packet.rs')
-rwxr-xr-xazalea-protocol/src/packets/game/clientbound_command_suggestions_packet.rs37
1 files changed, 0 insertions, 37 deletions
diff --git a/azalea-protocol/src/packets/game/clientbound_command_suggestions_packet.rs b/azalea-protocol/src/packets/game/clientbound_command_suggestions_packet.rs
deleted file mode 100755
index c9752ee9..00000000
--- a/azalea-protocol/src/packets/game/clientbound_command_suggestions_packet.rs
+++ /dev/null
@@ -1,37 +0,0 @@
-use azalea_brigadier::suggestion::Suggestions;
-use azalea_buf::McBuf;
-use azalea_protocol_macros::ClientboundGamePacket;
-
-#[derive(Clone, Debug, McBuf, ClientboundGamePacket)]
-pub struct ClientboundCommandSuggestionsPacket {
- #[var]
- pub id: u32,
- pub suggestions: Suggestions,
-}
-
-#[cfg(test)]
-mod tests {
- use std::io::Cursor;
-
- use azalea_brigadier::{context::StringRange, suggestion::Suggestion};
- use azalea_buf::{McBufReadable, McBufWritable};
-
- use super::*;
-
- #[test]
- fn test_suggestions() {
- let suggestions = Suggestions::new(
- StringRange::new(0, 5),
- vec![Suggestion::new_with_tooltip(
- StringRange::new(1, 4),
- "foo",
- "bar".to_string(),
- )],
- );
- let mut buf = Vec::new();
- suggestions.write_into(&mut buf).unwrap();
- let mut cursor = Cursor::new(&buf[..]);
- let suggestions = Suggestions::read_from(&mut cursor).unwrap();
- assert_eq!(suggestions, suggestions);
- }
-}