mirror of
https://github.com/mat-1/azalea.git
synced 2024-11-03 08:04:00 +00:00
fix ClientboundLevelParticlesPacket
This commit is contained in:
parent
79a0d58cc5
commit
357824014e
1 changed files with 2 additions and 3 deletions
|
@ -1,6 +1,6 @@
|
|||
use azalea_buf::McBuf;
|
||||
use azalea_entity::particle::Particle;
|
||||
use azalea_protocol_macros::ClientboundGamePacket;
|
||||
use azalea_registry::ParticleKind;
|
||||
|
||||
#[derive(Clone, Debug, McBuf, ClientboundGamePacket)]
|
||||
pub struct ClientboundLevelParticlesPacket {
|
||||
|
@ -12,7 +12,6 @@ pub struct ClientboundLevelParticlesPacket {
|
|||
pub y_dist: f32,
|
||||
pub z_dist: f32,
|
||||
pub max_speed: f32,
|
||||
#[var]
|
||||
pub count: u32,
|
||||
pub particle: ParticleKind,
|
||||
pub particle: Particle,
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue