From 0902edb244d052f77656376355431b838bc3f971 Mon Sep 17 00:00:00 2001 From: Shayne Hartford Date: Tue, 12 Nov 2024 18:59:04 -0500 Subject: Switch to u32 to match other entity ids in Azalea (#182) * Switch to u32 to match other entity ids in Azalea * Forgot about the other entity id * Revert "Forgot about the other entity id" That wasn't meant for this branch, squash merge this out lol. --- azalea-protocol/src/packets/game/clientbound_add_entity_packet.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/azalea-protocol/src/packets/game/clientbound_add_entity_packet.rs b/azalea-protocol/src/packets/game/clientbound_add_entity_packet.rs index 9c8782d0..6b62df19 100755 --- a/azalea-protocol/src/packets/game/clientbound_add_entity_packet.rs +++ b/azalea-protocol/src/packets/game/clientbound_add_entity_packet.rs @@ -16,7 +16,7 @@ pub struct ClientboundAddEntityPacket { pub y_rot: i8, pub y_head_rot: i8, #[var] - pub data: i32, + pub data: u32, pub x_vel: i16, pub y_vel: i16, pub z_vel: i16, -- cgit v1.2.3