diff options
| author | mat <git@matdoes.dev> | 2025-01-14 03:18:38 +0000 |
|---|---|---|
| committer | mat <git@matdoes.dev> | 2025-01-14 03:18:38 +0000 |
| commit | 2dcfbe96c3024f9e1d32473d58130efa518c91cf (patch) | |
| tree | fb3eba8d165d80ab47dc83b41adab124e32dad8a /azalea-protocol/src/packets/game/c_container_set_content.rs | |
| parent | a86d011d4ae869128dd404535f8d377c3a5e4c18 (diff) | |
| download | azalea-drasl-2dcfbe96c3024f9e1d32473d58130efa518c91cf.tar.xz | |
fix wrong ServerLinkKind and serialize hex colors correctly in nbt
Diffstat (limited to 'azalea-protocol/src/packets/game/c_container_set_content.rs')
| -rwxr-xr-x | azalea-protocol/src/packets/game/c_container_set_content.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/azalea-protocol/src/packets/game/c_container_set_content.rs b/azalea-protocol/src/packets/game/c_container_set_content.rs index 33fbf77b..2b315a5a 100755 --- a/azalea-protocol/src/packets/game/c_container_set_content.rs +++ b/azalea-protocol/src/packets/game/c_container_set_content.rs @@ -19,7 +19,6 @@ mod tests { use azalea_buf::AzaleaRead; use super::ClientboundContainerSetContent; - use crate::packets::ProtocolPacket; #[test] fn test_read_write_container_set_content() { @@ -29,7 +28,7 @@ mod tests { 0, 0, 0, 0, 0, 0, 0, 1, 196, 6, 0, 0, 0, ]; let mut buf = Cursor::new(contents.as_slice()); - let packet = ClientboundContainerSetContent::read(&mut buf).unwrap(); + let packet = ClientboundContainerSetContent::azalea_read(&mut buf).unwrap(); println!("{:?}", packet); assert_eq!(buf.position(), contents.len() as u64); |
