fix(Core/Scripts): Fix Missile Barrage and Clearcasting proc with Arcane Missiles (#24958)
Co-authored-by: blinkysc <blinkysc@users.noreply.github.com>
This commit is contained in:
parent
bd99687040
commit
1cbd6e0612
4 changed files with 40 additions and 6 deletions
|
|
@ -0,0 +1,9 @@
|
|||
-- Fix Missile Barrage / Clearcasting proc interaction with Arcane Missiles
|
||||
-- 1) PROC_ATTR_REQ_SPELLMOD was incorrectly blocking Missile Barrage from
|
||||
-- proccing because the channel spell (42846) is not in m_appliedMods.
|
||||
-- Restrict via SpellFamilyMask to Arcane Missiles (0x800) instead.
|
||||
-- 2) Register Clearcasting script to give Missile Barrage priority
|
||||
UPDATE `spell_proc` SET `AttributesMask` = 0, `SpellFamilyMask0` = 0x800 WHERE `SpellId` = 44401;
|
||||
|
||||
DELETE FROM `spell_script_names` WHERE `spell_id` = 12536 AND `ScriptName` = 'spell_mage_clearcasting';
|
||||
INSERT INTO `spell_script_names` (`spell_id`, `ScriptName`) VALUES (12536, 'spell_mage_clearcasting');
|
||||
Loading…
Add table
Add a link
Reference in a new issue