From 58974e6733a39bd55b9511f0010e0a8b7cd49aa4 Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Thu, 28 Mar 2013 13:52:32 +0300 Subject: Disable more particles if particle engine disabled. --- src/being.cpp | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'src/being.cpp') 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() -- cgit v1.2.3-70-g09d2