aboutsummaryrefslogtreecommitdiff
path: root/azalea-entity/src/particle.rs
diff options
context:
space:
mode:
authormat <27899617+mat-1@users.noreply.github.com>2026-03-24 11:15:56 -0500
committerGitHub <noreply@github.com>2026-03-24 11:15:56 -0500
commiteeaf1435e81d9cbd8daa0efa22029c1f259a64b5 (patch)
tree3486e26d5409708370e4e259d240fb77c6e1e439 /azalea-entity/src/particle.rs
parent41a9ae6aaff77646c08c64ac1334a8cc6081c24f (diff)
downloadazalea-drasl-eeaf1435e81d9cbd8daa0efa22029c1f259a64b5.tar.xz
26.1 (#316)
* start updating to 26.1 * start updating to 26.1-snapshot-6 * 26.1-snapshot-6 * 26.1-snapshot-10 * 26.1-rc-1 * fix tests * 26.1-rc-2 and sort default components * 26.1 * update changelog
Diffstat (limited to 'azalea-entity/src/particle.rs')
-rw-r--r--azalea-entity/src/particle.rs4
1 files changed, 4 insertions, 0 deletions
diff --git a/azalea-entity/src/particle.rs b/azalea-entity/src/particle.rs
index 397346cf..7da9870f 100644
--- a/azalea-entity/src/particle.rs
+++ b/azalea-entity/src/particle.rs
@@ -61,6 +61,8 @@ pub enum Particle {
Item(ItemParticle),
Vibration(Box<VibrationParticle>),
Trail,
+ PauseMobGrowth,
+ ResetMobGrowth,
ItemSlime,
ItemCobweb,
ItemSnowball,
@@ -254,6 +256,8 @@ impl From<ParticleKind> for Particle {
ParticleKind::BlockCrumble => Self::BlockCrumble,
ParticleKind::Firefly => Self::Firefly,
ParticleKind::CopperFireFlame => Self::CopperFireFlame,
+ ParticleKind::PauseMobGrowth => Self::PauseMobGrowth,
+ ParticleKind::ResetMobGrowth => Self::ResetMobGrowth,
}
}
}