diff options
Diffstat (limited to 'azalea-protocol/src/packets/game/c_rotate_head.rs')
| -rwxr-xr-x | azalea-protocol/src/packets/game/c_rotate_head.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/azalea-protocol/src/packets/game/c_rotate_head.rs b/azalea-protocol/src/packets/game/c_rotate_head.rs index 26e55948..d4dec203 100755 --- a/azalea-protocol/src/packets/game/c_rotate_head.rs +++ b/azalea-protocol/src/packets/game/c_rotate_head.rs @@ -1,9 +1,10 @@ use azalea_buf::AzBuf; use azalea_protocol_macros::ClientboundGamePacket; +use azalea_world::MinecraftEntityId; #[derive(Clone, Debug, AzBuf, ClientboundGamePacket)] pub struct ClientboundRotateHead { #[var] - pub entity_id: u32, + pub entity_id: MinecraftEntityId, pub y_head_rot: i8, } |
