diff options
| author | mat <27899617+mat-1@users.noreply.github.com> | 2024-12-03 14:42:23 -0600 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-12-03 14:42:23 -0600 |
| commit | b71a7af53ae2dba2b43c8efc855a4a3b853ebff2 (patch) | |
| tree | 031910714b6b9fb8cc0aaafe376f8629acedf671 /azalea-protocol/src/packets/game/c_level_particles.rs | |
| parent | ea5a1c1ec128cc1a33593c9d91ef758c3fb73e16 (diff) | |
| download | azalea-drasl-b71a7af53ae2dba2b43c8efc855a4a3b853ebff2.tar.xz | |
1.21.4 (#189)
* start updating to 1.21.4
* fix block codegen and stop using block data from burger
* 1.21.4-rc1
* 1.21.4
Diffstat (limited to 'azalea-protocol/src/packets/game/c_level_particles.rs')
| -rwxr-xr-x | azalea-protocol/src/packets/game/c_level_particles.rs | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/azalea-protocol/src/packets/game/c_level_particles.rs b/azalea-protocol/src/packets/game/c_level_particles.rs index d700673c..ef50d0cd 100755 --- a/azalea-protocol/src/packets/game/c_level_particles.rs +++ b/azalea-protocol/src/packets/game/c_level_particles.rs @@ -5,6 +5,7 @@ use azalea_protocol_macros::ClientboundGamePacket; #[derive(Clone, Debug, AzBuf, ClientboundGamePacket)] pub struct ClientboundLevelParticles { pub override_limiter: bool, + pub always_show: bool, pub x: f64, pub y: f64, pub z: f64, @@ -27,13 +28,14 @@ mod tests { #[test] fn test_c_level_particles_packet() { let slice = &[ - 0, 64, 139, 10, 0, 0, 0, 0, 0, 192, 26, 0, 0, 0, 0, 0, 0, 64, 144, 58, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 13, 63, 128, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 63, 128, 0, 0, + 0, 0, 64, 36, 19, 1, 192, 139, 224, 69, 64, 91, 192, 0, 0, 0, 0, 0, 63, 229, 66, 62, + 20, 132, 232, 141, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 62, 25, 153, 154, 0, 0, 0, 70, + 1, 9, ][..]; let mut bytes = Cursor::new(slice); - let _packet = ClientboundLevelParticles::azalea_read(&mut bytes).unwrap(); + let packet = ClientboundLevelParticles::azalea_read(&mut bytes).unwrap(); + println!("{packet:?}"); assert_eq!(bytes.position(), slice.len() as u64); } } |
