From 889ef5b11c8a5e98cb9df53e658831aa339b52f6 Mon Sep 17 00:00:00 2001 From: blinkysc <37940565+blinkysc@users.noreply.github.com> Date: Sun, 8 Mar 2026 12:31:21 -0500 Subject: [PATCH] fix(DB/Spell): Piercing Howl should break stealth (#25037) Co-authored-by: blinkysc --- data/sql/updates/pending_db_world/rev_1772987652770167121.sql | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 data/sql/updates/pending_db_world/rev_1772987652770167121.sql diff --git a/data/sql/updates/pending_db_world/rev_1772987652770167121.sql b/data/sql/updates/pending_db_world/rev_1772987652770167121.sql new file mode 100644 index 000000000..e883f4462 --- /dev/null +++ b/data/sql/updates/pending_db_world/rev_1772987652770167121.sql @@ -0,0 +1,2 @@ +-- Remove SPELL_ATTR0_CU_DONT_BREAK_STEALTH (0x40) from Piercing Howl +UPDATE `spell_custom_attr` SET `attributes` = `attributes` & ~(64) WHERE `spell_id` = 12323;