From 5e99c2218d3a8cc39b034128f584372c3a58142a Mon Sep 17 00:00:00 2001 From: Shayne Hartford Date: Tue, 22 Oct 2024 01:24:09 -0400 Subject: [PATCH] Add missing yaw and patch fields to ServerboundUseItemPacket (#178) (cherry picked from commit ed7b306aff5ed1d1ce9659d41f76f3f3a6884dd6) --- azalea-protocol/src/packets/game/serverbound_use_item_packet.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/azalea-protocol/src/packets/game/serverbound_use_item_packet.rs b/azalea-protocol/src/packets/game/serverbound_use_item_packet.rs index 7fcab5dd1..3129244ab 100755 --- a/azalea-protocol/src/packets/game/serverbound_use_item_packet.rs +++ b/azalea-protocol/src/packets/game/serverbound_use_item_packet.rs @@ -7,4 +7,6 @@ pub struct ServerboundUseItemPacket { pub hand: InteractionHand, #[var] pub sequence: u32, + pub yaw: f32, + pub pitch: f32, }