aboutsummaryrefslogtreecommitdiff
path: root/azalea-protocol/src/packets/game/c_set_equipment.rs
diff options
context:
space:
mode:
authormat <27899617+mat-1@users.noreply.github.com>2025-03-25 11:17:39 -0500
committerGitHub <noreply@github.com>2025-03-25 11:17:39 -0500
commitef357fdf3667f3ded03203fc0f7cdec48a01ad8f (patch)
tree6e7429c62a22fec1988278f63554c93bdd905a5d /azalea-protocol/src/packets/game/c_set_equipment.rs
parent8af265e48bf9f3d5263c074d034770e4216bb3f3 (diff)
downloadazalea-drasl-ef357fdf3667f3ded03203fc0f7cdec48a01ad8f.tar.xz
1.21.5 (#198)
* 25w02a * move item_components codegen to a different module * remove outdated test * 25w03a * start updating to 24w09b * 1.21.5-pre2 * fix broken packets * 1.21.5-rc2 * merge main * delete unused acket_handling * 1.21.5
Diffstat (limited to 'azalea-protocol/src/packets/game/c_set_equipment.rs')
-rwxr-xr-xazalea-protocol/src/packets/game/c_set_equipment.rs19
1 files changed, 0 insertions, 19 deletions
diff --git a/azalea-protocol/src/packets/game/c_set_equipment.rs b/azalea-protocol/src/packets/game/c_set_equipment.rs
index 234de5d9..ad691d66 100755
--- a/azalea-protocol/src/packets/game/c_set_equipment.rs
+++ b/azalea-protocol/src/packets/game/c_set_equipment.rs
@@ -80,22 +80,3 @@ impl EquipmentSlot {
}
}
}
-
-#[cfg(test)]
-mod tests {
- use super::*;
-
- #[test]
- fn test_hypixel_set_equipment() {
- let mut cursor = Cursor::new(
- [
- 230, 25, 0, 1, 224, 6, 2, 0, 3, 0, 22, 79, 0, 0, 0, 3, 0, 0, 0, 0, 0,
- ]
- .as_slice(),
- );
-
- let packet = ClientboundSetEquipment::azalea_read(&mut cursor).unwrap();
- println!("packet {packet:?}");
- assert_eq!(cursor.position(), cursor.get_ref().len() as u64);
- }
-}