diff options
author | Kandera <KanderaDev@gmail.com> | 2012-03-27 08:42:54 -0400 |
---|---|---|
committer | Kandera <KanderaDev@gmail.com> | 2012-03-27 08:42:54 -0400 |
commit | 0550f1dc05ab7b00b74e9b7730f60a64bcf17174 (patch) | |
tree | 0b7fd6992869c30f4ee9bae8843f06fa58536839 /src | |
parent | 79a782f1439c662f566454276687819f3d0e0711 (diff) |
Core/Spells: fix the issue with dispel auras. (thx warpten) closes #5902
Diffstat (limited to 'src')
-rwxr-xr-x | src/server/game/Spells/Spell.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/game/Spells/Spell.cpp b/src/server/game/Spells/Spell.cpp index 2032c883256..a9e1b964b1c 100755 --- a/src/server/game/Spells/Spell.cpp +++ b/src/server/game/Spells/Spell.cpp @@ -4984,7 +4984,7 @@ SpellCastResult Spell::CheckCast(bool strict) break; } - if (!hasNonDispelEffect && !hasDispellableAura && m_spellInfo->HasEffect(SPELL_EFFECT_DISPEL)) + if (!hasNonDispelEffect && !hasDispellableAura && m_spellInfo->HasEffect(SPELL_EFFECT_DISPEL) && m_spellInfo->CalcPowerCost(m_caster, SPELL_SCHOOL_MASK_NONE)) return SPELL_FAILED_NOTHING_TO_DISPEL; for (int i = 0; i < MAX_SPELL_EFFECTS; i++) |