aboutsummaryrefslogtreecommitdiff
path: root/azalea-protocol/src/packets
diff options
context:
space:
mode:
Diffstat (limited to 'azalea-protocol/src/packets')
-rw-r--r--azalea-protocol/src/packets/game/clientbound_add_entity_packet.rs11
1 files changed, 4 insertions, 7 deletions
diff --git a/azalea-protocol/src/packets/game/clientbound_add_entity_packet.rs b/azalea-protocol/src/packets/game/clientbound_add_entity_packet.rs
index ad948922..c5a5597f 100644
--- a/azalea-protocol/src/packets/game/clientbound_add_entity_packet.rs
+++ b/azalea-protocol/src/packets/game/clientbound_add_entity_packet.rs
@@ -16,11 +16,8 @@ pub struct ClientboundAddEntityPacket {
pub z: f64,
pub x_rot: i8,
pub y_rot: i8,
- pub data: i8,
- /// X acceleration
- pub xa: u16,
- /// Y acceleration
- pub ya: u16,
- /// Z acceleration
- pub za: u16,
+ pub y_head_rot: i8,
+ pub x_vel: u16,
+ pub y_vel: u16,
+ pub z_vel: u16,
}