diff options
Diffstat (limited to 'azalea-protocol/src/packets/game/c_move_entity_pos.rs')
| -rwxr-xr-x | azalea-protocol/src/packets/game/c_move_entity_pos.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/azalea-protocol/src/packets/game/c_move_entity_pos.rs b/azalea-protocol/src/packets/game/c_move_entity_pos.rs index b153bb3c..790a1580 100755 --- a/azalea-protocol/src/packets/game/c_move_entity_pos.rs +++ b/azalea-protocol/src/packets/game/c_move_entity_pos.rs @@ -1,11 +1,12 @@ use azalea_buf::AzBuf; use azalea_core::delta::PositionDelta8; use azalea_protocol_macros::ClientboundGamePacket; +use azalea_world::MinecraftEntityId; #[derive(Clone, Debug, AzBuf, ClientboundGamePacket)] pub struct ClientboundMoveEntityPos { #[var] - pub entity_id: u32, + pub entity_id: MinecraftEntityId, pub delta: PositionDelta8, pub on_ground: bool, } |
