mirror of
https://github.com/azerothcore/azerothcore-wotlk.git
synced 2026-03-14 02:30:40 -07:00
fix(DB/Spells): Prevent Focused Attacks from proccing on offhand attacks (#24870)
Co-authored-by: blinkysc <blinkysc@users.noreply.github.com>
This commit is contained in:
parent
823bf84a12
commit
2fe33a782d
1 changed files with 4 additions and 0 deletions
|
|
@ -0,0 +1,4 @@
|
|||
-- Focused Attacks should not proc from offhand attacks (including Fan of Knives offhand)
|
||||
DELETE FROM `spell_script_names` WHERE `spell_id` = -51634 AND `ScriptName` = 'spell_gen_no_offhand_proc';
|
||||
INSERT INTO `spell_script_names` (`spell_id`, `ScriptName`) VALUES
|
||||
(-51634, 'spell_gen_no_offhand_proc');
|
||||
Loading…
Add table
Add a link
Reference in a new issue