diff options
Diffstat (limited to 'azalea-protocol/src/packets/game/c_set_entity_data.rs')
| -rwxr-xr-x | azalea-protocol/src/packets/game/c_set_entity_data.rs | 3 |
1 files changed, 2 insertions, 1 deletions
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 afa352ab..fb77163b 100755 --- a/azalea-protocol/src/packets/game/c_set_entity_data.rs +++ b/azalea-protocol/src/packets/game/c_set_entity_data.rs @@ -1,11 +1,12 @@ use azalea_buf::AzBuf; use azalea_entity::EntityMetadataItems; use azalea_protocol_macros::ClientboundGamePacket; +use azalea_world::MinecraftEntityId; #[derive(Clone, Debug, AzBuf, ClientboundGamePacket)] pub struct ClientboundSetEntityData { #[var] - pub id: u32, + pub id: MinecraftEntityId, pub packed_items: EntityMetadataItems, } |
