fix(Core/Spells): Azuregos' Mana Storm should not be interruptable (#10721)
This commit is contained in:
parent
d1445811e2
commit
25c824e8d8
1 changed files with 6 additions and 0 deletions
|
|
@ -4154,6 +4154,12 @@ void SpellMgr::LoadSpellInfoCorrections()
|
|||
spellInfo->Effects[EFFECT_1].SpellClassMask[1] = 0x00020000;
|
||||
});
|
||||
|
||||
// Manastorm
|
||||
ApplySpellFix({ 21097 }, [](SpellInfo* spellInfo)
|
||||
{
|
||||
spellInfo->InterruptFlags &= ~SPELL_INTERRUPT_FLAG_INTERRUPT;
|
||||
});
|
||||
|
||||
// Arcane Vacuum
|
||||
ApplySpellFix({ 21147 }, [](SpellInfo* spellInfo)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue