aboutsummaryrefslogtreecommitdiff
path: root/azalea-entity/src/particle.rs
diff options
context:
space:
mode:
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,
}
}
}