Core/Spell: do not fail triggered Charge effects in case a root is present.

Fixes Master's call when pet is rooted

(cherry picked from commit 5daabe303e)
This commit is contained in:
ariel-
2016-11-13 23:20:45 -03:00
committed by joschiwald
parent f00f3c414e
commit 6d7abb8181

View File

@@ -5363,7 +5363,7 @@ SpellCastResult Spell::CheckCast(bool strict, uint32* param1 /*= nullptr*/, uint
}
case SPELL_EFFECT_CHARGE:
{
if (m_caster->HasUnitState(UNIT_STATE_ROOT))
if (!(_triggeredCastFlags & TRIGGERED_IGNORE_CASTER_AURAS) && m_caster->HasUnitState(UNIT_STATE_ROOT))
return SPELL_FAILED_ROOTED;
if (GetSpellInfo()->NeedsExplicitUnitTarget())