diff options
| author | mat <github@matdoes.dev> | 2022-04-30 22:16:13 -0500 |
|---|---|---|
| committer | mat <github@matdoes.dev> | 2022-04-30 22:16:13 -0500 |
| commit | 51201ffe657a3d20843c13be57ced740270cd384 (patch) | |
| tree | f6ee119189a2cb71adacb652b069f675a26afe13 /azalea-protocol/src | |
| parent | f2a8e8221d9de6e76721d3c947ba9f1ab7c3c90d (diff) | |
| download | azalea-drasl-51201ffe657a3d20843c13be57ced740270cd384.tar.xz | |
Update clientbound_add_entity_packet.rs
Diffstat (limited to 'azalea-protocol/src')
| -rw-r--r-- | azalea-protocol/src/packets/game/clientbound_add_entity_packet.rs | 11 |
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, } |
