From 5748140469525efbdee359482d26e50a11abcd87 Mon Sep 17 00:00:00 2001 From: AlsoNotMehh Date: Wed, 10 Jun 2026 19:05:27 -0400 Subject: [PATCH] fix(DB/Spell): Prevent Stoneclaw Totem from breaking stealth (#26083) Co-authored-by: sogladev --- .../pending_db_world/rev_1780701448105926000.sql | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 data/sql/updates/pending_db_world/rev_1780701448105926000.sql diff --git a/data/sql/updates/pending_db_world/rev_1780701448105926000.sql b/data/sql/updates/pending_db_world/rev_1780701448105926000.sql new file mode 100644 index 0000000000..39bb1b2233 --- /dev/null +++ b/data/sql/updates/pending_db_world/rev_1780701448105926000.sql @@ -0,0 +1,13 @@ +-- Stoneclaw Totem pulses should not break stealth (Patch 3.2.2). +DELETE FROM `spell_custom_attr` WHERE `spell_id` IN (5729, 6393, 6394, 6395, 10423, 10424, 25512, 58586, 58587, 58588); +INSERT INTO `spell_custom_attr` (`spell_id`, `attributes`) VALUES +(5729, 64), +(6393, 64), +(6394, 64), +(6395, 64), +(10423, 64), +(10424, 64), +(25512, 64), +(58586, 64), +(58587, 64), +(58588, 64);