diff options
Diffstat (limited to 'azalea-protocol/src/packets/game/c_set_entity_link.rs')
| -rwxr-xr-x | azalea-protocol/src/packets/game/c_set_entity_link.rs | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/azalea-protocol/src/packets/game/c_set_entity_link.rs b/azalea-protocol/src/packets/game/c_set_entity_link.rs index c4ce8bdf..2a38db76 100755 --- a/azalea-protocol/src/packets/game/c_set_entity_link.rs +++ b/azalea-protocol/src/packets/game/c_set_entity_link.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 ClientboundSetEntityLink { - pub source_id: u32, - pub dest_id: u32, + pub source_id: MinecraftEntityId, + pub dest_id: MinecraftEntityId, } |
