fix(Core/Spells): Azuregos' Mana Storm should not be interruptable (#10721)

This commit is contained in:
Nefertumm
2022-02-22 01:23:27 -03:00
committed by GitHub
parent d1445811e2
commit 25c824e8d8

View File

@@ -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)
{