diff options
| author | mat <github@matdoes.dev> | 2022-06-19 14:00:51 -0500 |
|---|---|---|
| committer | mat <github@matdoes.dev> | 2022-06-19 14:00:51 -0500 |
| commit | d674633e856f0ac1683172ad5655ff7026c6eae6 (patch) | |
| tree | c24169e74bf3b5affadeda757694e504d2054da0 /azalea-protocol/src/packets/game/clientbound_entity_event_packet.rs | |
| parent | e84893b07a65ebca8d4027b386d3dfd87bcfd009 (diff) | |
| parent | 405a00c0d1908a4b3fbd8e6684c77dfb178ac55d (diff) | |
| download | azalea-drasl-d674633e856f0ac1683172ad5655ff7026c6eae6.tar.xz | |
Merge branch 'main' into azalea-entity
Diffstat (limited to 'azalea-protocol/src/packets/game/clientbound_entity_event_packet.rs')
| -rw-r--r-- | azalea-protocol/src/packets/game/clientbound_entity_event_packet.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/azalea-protocol/src/packets/game/clientbound_entity_event_packet.rs b/azalea-protocol/src/packets/game/clientbound_entity_event_packet.rs index 1b06bff7..d0cc7222 100644 --- a/azalea-protocol/src/packets/game/clientbound_entity_event_packet.rs +++ b/azalea-protocol/src/packets/game/clientbound_entity_event_packet.rs @@ -3,6 +3,6 @@ use packet_macros::{GamePacket, McBuf}; // we can't identify the status in azalea-protocol since they vary depending on the entity #[derive(Clone, Debug, McBuf, GamePacket)] pub struct ClientboundEntityEventPacket { - pub entity_id: i32, - pub entity_status: i8, + pub entity_id: u32, + pub event_id: u8, } |
