diff options
Diffstat (limited to 'src/particle.cpp')
-rw-r--r-- | src/particle.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/particle.cpp b/src/particle.cpp index e7e41a094..0d771a15e 100644 --- a/src/particle.cpp +++ b/src/particle.cpp @@ -194,9 +194,10 @@ bool Particle::update() { mAlive = DEAD_FLOOR; } - } else if (mPos.z > PARTICLE_SKY) + } + else if (mPos.z > PARTICLE_SKY) { - mAlive = DEAD_SKY; + mAlive = DEAD_SKY; } // Update child emitters |