diff options
Diffstat (limited to 'azalea-protocol/src/packets/game/c_player_combat_kill.rs')
| -rwxr-xr-x | azalea-protocol/src/packets/game/c_player_combat_kill.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/azalea-protocol/src/packets/game/c_player_combat_kill.rs b/azalea-protocol/src/packets/game/c_player_combat_kill.rs index fb7285b5..2d6fc3e7 100755 --- a/azalea-protocol/src/packets/game/c_player_combat_kill.rs +++ b/azalea-protocol/src/packets/game/c_player_combat_kill.rs @@ -1,11 +1,12 @@ use azalea_buf::AzBuf; use azalea_chat::FormattedText; use azalea_protocol_macros::ClientboundGamePacket; +use azalea_world::MinecraftEntityId; /// Used to send a respawn screen. #[derive(Clone, Debug, AzBuf, ClientboundGamePacket)] pub struct ClientboundPlayerCombatKill { #[var] - pub player_id: u32, + pub player_id: MinecraftEntityId, pub message: FormattedText, } |
