diff options
Diffstat (limited to 'azalea-protocol/src/packets/game/c_move_entity_rot.rs')
| -rwxr-xr-x | azalea-protocol/src/packets/game/c_move_entity_rot.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/azalea-protocol/src/packets/game/c_move_entity_rot.rs b/azalea-protocol/src/packets/game/c_move_entity_rot.rs index a8362748..e33a12e9 100755 --- a/azalea-protocol/src/packets/game/c_move_entity_rot.rs +++ b/azalea-protocol/src/packets/game/c_move_entity_rot.rs @@ -1,10 +1,11 @@ use azalea_buf::AzBuf; use azalea_protocol_macros::ClientboundGamePacket; +use azalea_world::MinecraftEntityId; #[derive(Clone, Debug, AzBuf, ClientboundGamePacket)] pub struct ClientboundMoveEntityRot { #[var] - pub entity_id: u32, + pub entity_id: MinecraftEntityId, pub y_rot: i8, pub x_rot: i8, pub on_ground: bool, |
