fix(Core/Spells): Shadowflame should not be interruptable (#10437)
* Fix(Core/Spells): Shadowflame should not be interruptable
This commit is contained in:
parent
637ecf720d
commit
8a9a3c6fac
1 changed files with 6 additions and 0 deletions
|
|
@ -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)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue