aboutsummaryrefslogtreecommitdiff
path: root/azalea-entity/src/particle.rs
diff options
context:
space:
mode:
authormat <27899617+mat-1@users.noreply.github.com>2025-09-30 10:56:34 -0500
committerGitHub <noreply@github.com>2025-09-30 10:56:34 -0500
commit643fcb98c0e6cdc63218dd39960d9053b209d9a6 (patch)
tree6bddb7fe39b8fcc3ab3fb2665574533bb227898a /azalea-entity/src/particle.rs
parenta80d8d1b242430c4a251876fa67bfd26af7a0de9 (diff)
downloadazalea-drasl-643fcb98c0e6cdc63218dd39960d9053b209d9a6.tar.xz
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
Diffstat (limited to 'azalea-entity/src/particle.rs')
-rw-r--r--azalea-entity/src/particle.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/azalea-entity/src/particle.rs b/azalea-entity/src/particle.rs
index a457bba2..ce5f5350 100644
--- a/azalea-entity/src/particle.rs
+++ b/azalea-entity/src/particle.rs
@@ -8,6 +8,7 @@ use bevy_ecs::component::Component;
// the order of this enum must be kept in sync with ParticleKind, otherwise
// we get errors parsing particles.
+
/// A [`ParticleKind`] with data potentially attached to it.
#[derive(Component, Clone, Debug, AzBuf, PartialEq)]
pub enum Particle {
@@ -16,6 +17,7 @@ pub enum Particle {
BlockMarker(BlockParticle),
Bubble,
Cloud,
+ CopperFireFlame,
Crit,
DamageIndicator,
DragonBreath,
@@ -250,6 +252,7 @@ impl From<ParticleKind> for Particle {
ParticleKind::Trail => Self::Trail,
ParticleKind::BlockCrumble => Self::BlockCrumble,
ParticleKind::Firefly => Self::Firefly,
+ ParticleKind::CopperFireFlame => Self::CopperFireFlame,
}
}
}