fix(DB/Spell): Prevent Stoneclaw Totem from breaking stealth (#26083)

Co-authored-by: sogladev <sogladev@gmail.com>
This commit is contained in:
AlsoNotMehh
2026-06-10 19:05:27 -04:00
committed by GitHub
parent 3494808d9a
commit 5748140469
@@ -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);