From 53c0500b09f437b67deaa446ff6199c852b29c57 Mon Sep 17 00:00:00 2001 From: Andrew <47818697+Nyeriah@users.noreply.github.com> Date: Wed, 15 Jul 2026 06:02:41 -0300 Subject: [PATCH] fix(DB/Spell): Watcher Gashra's Enrage should be a buff (#26624) Co-authored-by: Claude Fable 5 --- .../updates/pending_db_world/rev_1784087165100029500.sql | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 data/sql/updates/pending_db_world/rev_1784087165100029500.sql diff --git a/data/sql/updates/pending_db_world/rev_1784087165100029500.sql b/data/sql/updates/pending_db_world/rev_1784087165100029500.sql new file mode 100644 index 000000000..b92f52eb2 --- /dev/null +++ b/data/sql/updates/pending_db_world/rev_1784087165100029500.sql @@ -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);