aboutsummaryrefslogtreecommitdiff
path: root/azalea-protocol
diff options
context:
space:
mode:
authormat <github@matdoes.dev>2022-06-24 00:02:03 -0500
committermat <github@matdoes.dev>2022-06-24 00:02:03 -0500
commit1640dfe45779e44bed549526f4c80ef59a230a7c (patch)
tree52b9040c2e3319852f639d4628baacd07105afdb /azalea-protocol
parentce834aeca5d732a547b66554590232321e3d1829 (diff)
downloadazalea-drasl-1640dfe45779e44bed549526f4c80ef59a230a7c.tar.xz
fix EntityDataValue
Diffstat (limited to 'azalea-protocol')
-rw-r--r--azalea-protocol/src/packets/game/clientbound_set_entity_data_packet.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/azalea-protocol/src/packets/game/clientbound_set_entity_data_packet.rs b/azalea-protocol/src/packets/game/clientbound_set_entity_data_packet.rs
index cc76ddf1..8cbd6f9b 100644
--- a/azalea-protocol/src/packets/game/clientbound_set_entity_data_packet.rs
+++ b/azalea-protocol/src/packets/game/clientbound_set_entity_data_packet.rs
@@ -5,6 +5,6 @@ use packet_macros::GamePacket;
#[derive(Clone, Debug, McBuf, GamePacket)]
pub struct ClientboundSetEntityDataPacket {
#[var]
- pub id: i32,
+ pub id: u32,
pub metadata: EntityMetadata,
}