diff options
Diffstat (limited to 'azalea-protocol/src/packets/game/s_interact.rs')
| -rwxr-xr-x | azalea-protocol/src/packets/game/s_interact.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/azalea-protocol/src/packets/game/s_interact.rs b/azalea-protocol/src/packets/game/s_interact.rs index cdd9cba5..89fc896f 100755 --- a/azalea-protocol/src/packets/game/s_interact.rs +++ b/azalea-protocol/src/packets/game/s_interact.rs @@ -3,13 +3,14 @@ use std::io::{Cursor, Write}; use azalea_buf::{AzBuf, AzaleaRead, AzaleaReadVar, AzaleaWrite, AzaleaWriteVar}; use azalea_core::position::Vec3; use azalea_protocol_macros::ServerboundGamePacket; +use azalea_world::MinecraftEntityId; use crate::packets::BufReadError; #[derive(Clone, Debug, AzBuf, ServerboundGamePacket)] pub struct ServerboundInteract { #[var] - pub entity_id: u32, + pub entity_id: MinecraftEntityId, pub action: ActionType, /// Whether the player is sneaking pub using_secondary_action: bool, |
