fix(DB/Spell): Watcher Gashra's Enrage should be a buff (#26624)

Co-authored-by: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
Andrew
2026-07-15 06:02:41 -03:00
committed by GitHub
parent ecd1366f09
commit 53c0500b09

View File

@@ -0,0 +1,6 @@
-- Watcher Gashra's Enrage (52470) is a self-buff, but its -50% physical damage
-- done effect (EFFECT_2) makes the core classify the whole aura as negative,
-- so it shows as a debuff on the target frame.
-- Mark all three effects positive (SPELL_ATTR0_CU_POSITIVE_EFF0 | EFF1 | EFF2).
DELETE FROM `spell_custom_attr` WHERE `spell_id` = 52470;
INSERT INTO `spell_custom_attr` (`spell_id`, `attributes`) VALUES (52470, 0x0E000000);