From e0f9548624e468d0d5488bcb40dbbe5c15f8bc54 Mon Sep 17 00:00:00 2001 From: Ovahlord Date: Sun, 23 Aug 2020 20:09:35 +0200 Subject: [PATCH] DB/Spells: the normal and instant cast DoT effect of Pyroblast will no longer stack with each other --- sql/updates/world/4.3.4/2020_08_23_01_world.sql | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 sql/updates/world/4.3.4/2020_08_23_01_world.sql diff --git a/sql/updates/world/4.3.4/2020_08_23_01_world.sql b/sql/updates/world/4.3.4/2020_08_23_01_world.sql new file mode 100644 index 00000000000..891f1365b45 --- /dev/null +++ b/sql/updates/world/4.3.4/2020_08_23_01_world.sql @@ -0,0 +1,8 @@ +DELETE FROM `spell_group` WHERE `id`= 1149; +INSERT INTO `spell_group` (`id`, `spell_id`) VALUES +(1149, 11366), +(1149, 92315); + +DELETE FROM `spell_group_stack_rules` WHERE `group_id`= 1149; +INSERT INTO `spell_group_stack_rules` (`group_id`, `stack_rule`) VALUES +(1149, 2);