From 643fcb98c0e6cdc63218dd39960d9053b209d9a6 Mon Sep 17 00:00:00 2001 From: mat <27899617+mat-1@users.noreply.github.com> Date: Tue, 30 Sep 2025 10:56:34 -0500 Subject: 1.21.9 (#235) * start updating to 25w33a * 1.21.9-pre2 * clippy * cleanup, and fix c_explode and c_player_rotation * mc update should be in Changed section in the changelog * 1.21.9 --- azalea-protocol/src/packets/game/c_explode.rs | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) (limited to 'azalea-protocol/src/packets/game/c_explode.rs') diff --git a/azalea-protocol/src/packets/game/c_explode.rs b/azalea-protocol/src/packets/game/c_explode.rs index e6ffa15c..15e036ea 100644 --- a/azalea-protocol/src/packets/game/c_explode.rs +++ b/azalea-protocol/src/packets/game/c_explode.rs @@ -7,7 +7,17 @@ use azalea_registry::SoundEvent; #[derive(Clone, Debug, AzBuf, PartialEq, ClientboundGamePacket)] pub struct ClientboundExplode { pub center: Vec3, - pub knockback: Option, + pub radius: f32, + pub block_count: i32, + pub player_knockback: Option, pub explosion_particle: Particle, pub explosion_sound: SoundEvent, + pub block_particles: Vec, +} + +#[derive(Clone, Debug, AzBuf, PartialEq)] +pub struct ExplosionParticleInfo { + pub particle: Particle, + pub scaling: f32, + pub speed: f32, } -- cgit v1.2.3