fix(Core/Spells): Allow Mutilate offhand to proc Focused Attacks (#24907)
This commit is contained in:
parent
5adb7e07e8
commit
424f97208a
2 changed files with 32 additions and 0 deletions
|
|
@ -0,0 +1,7 @@
|
|||
-- Replace generic no-offhand-proc with Focused Attacks-specific script
|
||||
-- that only blocks Fan of Knives offhand from proccing, allowing Mutilate
|
||||
-- offhand and other offhand attacks to proc normally
|
||||
DELETE FROM `spell_script_names` WHERE `spell_id` = -51634 AND `ScriptName` = 'spell_gen_no_offhand_proc';
|
||||
DELETE FROM `spell_script_names` WHERE `spell_id` = -51634 AND `ScriptName` = 'spell_rog_focused_attacks';
|
||||
INSERT INTO `spell_script_names` (`spell_id`, `ScriptName`) VALUES
|
||||
(-51634, 'spell_rog_focused_attacks');
|
||||
Loading…
Add table
Add a link
Reference in a new issue