DB/Spells: fix proc regression with Missile Barrage

Closes #21466
This commit is contained in:
ariel-
2018-02-21 10:33:50 -03:00
committed by Aokromes
parent 2686cbaf63
commit f2f574fbdd
2 changed files with 8 additions and 0 deletions

View File

@@ -0,0 +1 @@
UPDATE `spell_proc` SET `ProcFlags`=65536 WHERE `SpellId`=44401;

View File

@@ -2886,6 +2886,13 @@ void SpellMgr::LoadSpellInfoCorrections()
spellInfo->AttributesEx4 |= SPELL_ATTR4_FIXED_DAMAGE;
});
// Missile Barrage
ApplySpellFix({ 44401 }, [](SpellInfo* spellInfo)
{
// should be consumed before Clearcasting
spellInfo->Priority = 100;
});
// Howl of Azgalor
ApplySpellFix({ 31344 }, [](SpellInfo* spellInfo)
{