diff options
Diffstat (limited to 'src/being.cpp')
-rw-r--r-- | src/being.cpp | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/being.cpp b/src/being.cpp index c57532fbf..22ce33f41 100644 --- a/src/being.cpp +++ b/src/being.cpp @@ -1147,7 +1147,7 @@ void Being::setAction(const Action &action, const int attackId) rotation = 270; break; } - if (effectManager && effectId >= 0) + if (Particle::enabled && effectManager && effectId >= 0) effectManager->trigger(effectId, this, rotation); } } @@ -2780,8 +2780,11 @@ void Being::removeAfkEffect() void Being::addSpecialEffect(const int effect) { - if (effectManager && !mSpecialParticle && effect != -1) + if (effectManager && Particle::enabled + && !mSpecialParticle && effect != -1) + { mSpecialParticle = effectManager->triggerReturn(effect, this); + } } void Being::removeSpecialEffect() |