From 643fcb98c0e6cdc63218dd39960d9053b209d9a6 Mon Sep 17 00:00:00 2001 From: mat <27899617+mat-1@users.noreply.github.com> Date: Tue, 30 Sep 2025 10:56:34 -0500 Subject: 1.21.9 (#235) * start updating to 25w33a * 1.21.9-pre2 * clippy * cleanup, and fix c_explode and c_player_rotation * mc update should be in Changed section in the changelog * 1.21.9 --- azalea-protocol/src/packets/game/c_set_entity_data.rs | 14 -------------- 1 file changed, 14 deletions(-) (limited to 'azalea-protocol/src/packets/game/c_set_entity_data.rs') diff --git a/azalea-protocol/src/packets/game/c_set_entity_data.rs b/azalea-protocol/src/packets/game/c_set_entity_data.rs index 666f6643..f51a42a4 100644 --- a/azalea-protocol/src/packets/game/c_set_entity_data.rs +++ b/azalea-protocol/src/packets/game/c_set_entity_data.rs @@ -18,20 +18,6 @@ mod tests { use super::*; - #[test] - fn test_read_write_hypixel_entity_data() { - let contents = [161, 226, 1, 10, 18, 1, 20, 38, 124, 175, 198, 255]; - let mut buf = Cursor::new(contents.as_slice()); - let packet = ClientboundSetEntityData::azalea_read(&mut buf).unwrap(); - println!("{packet:?}"); - - assert_eq!(buf.position(), contents.len() as u64); - - let mut buf = Vec::new(); - packet.write(&mut buf).unwrap(); - assert_eq!(buf, contents); - } - #[test] fn test_read_hypixel_entity_data_2() { let contents = [ -- cgit v1.2.3