diff options
Diffstat (limited to 'azalea-protocol/src/packets/game/c_set_entity_motion.rs')
| -rwxr-xr-x | azalea-protocol/src/packets/game/c_set_entity_motion.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/azalea-protocol/src/packets/game/c_set_entity_motion.rs b/azalea-protocol/src/packets/game/c_set_entity_motion.rs index d0dd7698..7a112784 100755 --- a/azalea-protocol/src/packets/game/c_set_entity_motion.rs +++ b/azalea-protocol/src/packets/game/c_set_entity_motion.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 ClientboundSetEntityMotion { #[var] - pub id: u32, + pub id: MinecraftEntityId, pub xa: i16, pub ya: i16, pub za: i16, |
