fix(Core/Spells): Shadowflame should not be interruptable (#10437)

* Fix(Core/Spells): Shadowflame should not be interruptable
This commit is contained in:
Nefertumm
2022-02-11 09:17:42 -03:00
committed by GitHub
parent 637ecf720d
commit 8a9a3c6fac

View File

@@ -4166,6 +4166,12 @@ void SpellMgr::LoadSpellInfoCorrections()
spellInfo->AttributesEx4 |= SPELL_ATTR4_AURA_EXPIRES_OFFLINE;
});
// Shadowflame
ApplySpellFix({ 22539 }, [](SpellInfo* spellInfo)
{
spellInfo->InterruptFlags &= ~SPELL_INTERRUPT_FLAG_INTERRUPT;
});
// PX-238 Winter Wondervolt
ApplySpellFix({ 26157, 26272, 26273, 26274 }, [](SpellInfo* spellInfo)
{