diff options
Diffstat (limited to 'azalea-protocol/src/packets/game/c_entity_position_sync.rs')
| -rwxr-xr-x | azalea-protocol/src/packets/game/c_entity_position_sync.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/azalea-protocol/src/packets/game/c_entity_position_sync.rs b/azalea-protocol/src/packets/game/c_entity_position_sync.rs index 0e8bea01..e3ecc3f0 100755 --- a/azalea-protocol/src/packets/game/c_entity_position_sync.rs +++ b/azalea-protocol/src/packets/game/c_entity_position_sync.rs @@ -1,12 +1,13 @@ use azalea_buf::AzBuf; use azalea_protocol_macros::ClientboundGamePacket; +use azalea_world::MinecraftEntityId; use crate::common::movements::PositionMoveRotation; #[derive(Clone, Debug, AzBuf, ClientboundGamePacket)] pub struct ClientboundEntityPositionSync { #[var] - pub id: u32, + pub id: MinecraftEntityId, pub values: PositionMoveRotation, pub on_ground: bool, } |
