From 1624d908ecfc3a7959ad8be8a456bd472a2f283b Mon Sep 17 00:00:00 2001 From: kb31 Date: Sun, 17 May 2026 18:35:16 +0100 Subject: [PATCH] fix(DB/Spells): Scourgebane Infusion and Scourgebane Draught should stack (#25823) --- .../updates/pending_db_world/rev_1778701540887000000.sql | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 data/sql/updates/pending_db_world/rev_1778701540887000000.sql diff --git a/data/sql/updates/pending_db_world/rev_1778701540887000000.sql b/data/sql/updates/pending_db_world/rev_1778701540887000000.sql new file mode 100644 index 000000000..622903b9c --- /dev/null +++ b/data/sql/updates/pending_db_world/rev_1778701540887000000.sql @@ -0,0 +1,7 @@ +-- +-- Scourgebane Infusion (item 22778 -> spell 28488) and Scourgebane Draught +-- (item 22779 -> spell 28486) are not battle elixirs. Remove them from the +-- Battle Elixir spell group(1) so they stack with each other and other +-- flasks/elixirs. +-- +DELETE FROM `spell_group` WHERE `id` = 1 AND `spell_id` IN (28486, 28488);