From e4108d089f05646f0d02e0ed260c7f3d350d3e31 Mon Sep 17 00:00:00 2001 From: "Michael Cook (mackal)" Date: Thu, 2 Jan 2014 18:19:59 -0500 Subject: [PATCH] Fix missing paren. --- zone/spell_effects.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zone/spell_effects.cpp b/zone/spell_effects.cpp index 7bb24106b..9790610a3 100644 --- a/zone/spell_effects.cpp +++ b/zone/spell_effects.cpp @@ -791,7 +791,7 @@ bool Mob::SpellEffect(Mob* caster, uint16 spell_id, float partial) // Ignore if spell is beneficial (ex. Harvest) if (IsDetrimentalSpell(spell.id) && (GetSpecialAbility(UNSTUNABLE) || ((GetLevel() > max_level) && caster && (!caster->IsNPC() || - (caster->IsNPC() && !RuleB(Spells, NPCIgnoreBaseImmunity))))) + (caster->IsNPC() && !RuleB(Spells, NPCIgnoreBaseImmunity)))))) { caster->Message_StringID(MT_SpellFailure, IMMUNE_STUN); } else {