diff options
Diffstat (limited to 'azalea-protocol/src/packets/game/s_player_command.rs')
| -rwxr-xr-x | azalea-protocol/src/packets/game/s_player_command.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/azalea-protocol/src/packets/game/s_player_command.rs b/azalea-protocol/src/packets/game/s_player_command.rs index 72a92310..f620b847 100755 --- a/azalea-protocol/src/packets/game/s_player_command.rs +++ b/azalea-protocol/src/packets/game/s_player_command.rs @@ -1,10 +1,11 @@ use azalea_buf::AzBuf; use azalea_protocol_macros::ServerboundGamePacket; +use azalea_world::MinecraftEntityId; #[derive(Clone, Debug, AzBuf, ServerboundGamePacket)] pub struct ServerboundPlayerCommand { #[var] - pub id: u32, + pub id: MinecraftEntityId, pub action: Action, #[var] pub data: u32, |
