diff options
| author | ariel- <ariel-@users.noreply.github.com> | 2018-02-21 10:33:50 -0300 |
|---|---|---|
| committer | ariel- <ariel-@users.noreply.github.com> | 2018-02-21 10:33:50 -0300 |
| commit | 640dd138a5916a54808b9c1a363e87026d1af184 (patch) | |
| tree | 736e55bd12d3e112b5b84eebcbecc1d0b4e74f97 | |
| parent | eb7d22d23eedb0d1b5374f80518cd7994d7c7b3a (diff) | |
DB/Spells: fix proc regression with Missile Barrage
Closes #21466
| -rw-r--r-- | sql/updates/world/3.3.5/2018_02_21_00_world_335.sql | 1 | ||||
| -rw-r--r-- | src/server/game/Spells/SpellMgr.cpp | 7 |
2 files changed, 8 insertions, 0 deletions
diff --git a/sql/updates/world/3.3.5/2018_02_21_00_world_335.sql b/sql/updates/world/3.3.5/2018_02_21_00_world_335.sql new file mode 100644 index 00000000000..c52db66c24b --- /dev/null +++ b/sql/updates/world/3.3.5/2018_02_21_00_world_335.sql @@ -0,0 +1 @@ +UPDATE `spell_proc` SET `ProcFlags`=65536 WHERE `SpellId`=44401; diff --git a/src/server/game/Spells/SpellMgr.cpp b/src/server/game/Spells/SpellMgr.cpp index 95bb04aa3c2..12c4408c84f 100644 --- a/src/server/game/Spells/SpellMgr.cpp +++ b/src/server/game/Spells/SpellMgr.cpp @@ -3153,6 +3153,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) { |
