aboutsummaryrefslogtreecommitdiff
path: root/azalea-protocol
diff options
context:
space:
mode:
authorShayne Hartford <shaybox@shaybox.com>2024-11-12 18:59:04 -0500
committerGitHub <noreply@github.com>2024-11-12 17:59:04 -0600
commit0902edb244d052f77656376355431b838bc3f971 (patch)
tree4a4fddb7f76984284806d492664f56802a6eac0e /azalea-protocol
parent09cdc22b86d0f9ed2bedc76cb92739277b3997e8 (diff)
downloadazalea-drasl-0902edb244d052f77656376355431b838bc3f971.tar.xz
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.
Diffstat (limited to 'azalea-protocol')
-rwxr-xr-xazalea-protocol/src/packets/game/clientbound_add_entity_packet.rs2
1 files changed, 1 insertions, 1 deletions
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,