From 2fe33a782dc8defcd753dc0106628f05ab48a193 Mon Sep 17 00:00:00 2001 From: blinkysc <37940565+blinkysc@users.noreply.github.com> Date: Wed, 25 Feb 2026 10:13:05 -0600 Subject: [PATCH] fix(DB/Spells): Prevent Focused Attacks from proccing on offhand attacks (#24870) Co-authored-by: blinkysc --- data/sql/updates/pending_db_world/rev_1772001104333030701.sql | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 data/sql/updates/pending_db_world/rev_1772001104333030701.sql diff --git a/data/sql/updates/pending_db_world/rev_1772001104333030701.sql b/data/sql/updates/pending_db_world/rev_1772001104333030701.sql new file mode 100644 index 000000000..51eced45e --- /dev/null +++ b/data/sql/updates/pending_db_world/rev_1772001104333030701.sql @@ -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');