From f9b57554e3fc463627d83a8eb147fe2df119f633 Mon Sep 17 00:00:00 2001 From: Kitzunu <24550914+Kitzunu@users.noreply.github.com> Date: Thu, 16 Jul 2020 13:30:15 +0200 Subject: [PATCH] fix(DB/Spell): Savory Deviate Delight auras should not stack (#3073) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Wyrserth Co-authored-by: Wyrserth Co-authored-by: Francesco Borzì Co-authored-by: Stefano Borzì --- .../pending_db_world/rev_1590526350564496900.sql | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 data/sql/updates/pending_db_world/rev_1590526350564496900.sql diff --git a/data/sql/updates/pending_db_world/rev_1590526350564496900.sql b/data/sql/updates/pending_db_world/rev_1590526350564496900.sql new file mode 100644 index 000000000..4195d1e25 --- /dev/null +++ b/data/sql/updates/pending_db_world/rev_1590526350564496900.sql @@ -0,0 +1,11 @@ +INSERT INTO `version_db_world` (`sql_rev`) VALUES ('1590526350564496900'); + +DELETE FROM `spell_group_stack_rules` WHERE `group_id` = 1112; +INSERT INTO `spell_group_stack_rules` (`group_id`, `stack_rule`) VALUES +(1112, 8); +DELETE FROM `spell_group` WHERE `id` = 1112; +INSERT INTO `spell_group` (`id`, `spell_id`) VALUES +(1112, 8219), +(1112, 8220), +(1112, 8221), +(1112, 8222);