Put simpler condition first

pull/59/head^2
Allofich 8 years ago
parent bca477ca8a
commit f31342894a

@ -3162,7 +3162,7 @@ namespace MWWorld
{
const ESM::MagicEffect* effect = getStore().get<ESM::MagicEffect>().find(effectIt->mEffectID);
if ((effectIt->mArea <= 0 && !ignore.isEmpty() && ignore.getClass().isActor()) || effectIt->mRange != rangeType)
if (effectIt->mRange != rangeType || (effectIt->mArea <= 0 && !ignore.isEmpty() && ignore.getClass().isActor()))
continue; // Not right range type, or not area effect and hit an actor
// Spawn the explosion orb effect

Loading…
Cancel
Save