diff options
Diffstat (limited to 'azalea-protocol/src/packets/game/c_entity_event.rs')
| -rwxr-xr-x | azalea-protocol/src/packets/game/c_entity_event.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/azalea-protocol/src/packets/game/c_entity_event.rs b/azalea-protocol/src/packets/game/c_entity_event.rs index 13efbabd..6eb08adc 100755 --- a/azalea-protocol/src/packets/game/c_entity_event.rs +++ b/azalea-protocol/src/packets/game/c_entity_event.rs @@ -1,8 +1,9 @@ use azalea_buf::AzBuf; use azalea_protocol_macros::ClientboundGamePacket; +use azalea_world::MinecraftEntityId; #[derive(Clone, Debug, AzBuf, ClientboundGamePacket)] pub struct ClientboundEntityEvent { - pub entity_id: u32, + pub entity_id: MinecraftEntityId, pub event_id: u8, } |
