Skip to content

Commit

Permalink
fix ClientboundLevelParticlesPacket
Browse files Browse the repository at this point in the history
  • Loading branch information
mat-1 committed Apr 24, 2024
1 parent 79a0d58 commit 3578240
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -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 {
Expand All @@ -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,
}

0 comments on commit 3578240

Please sign in to comment.