aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWyrserth <Wyrserth@users.noreply.github.com>2019-06-16 20:44:04 +0200
committerKillyana <morphone1@gmail.com>2019-06-16 20:44:04 +0200
commit578f93be24e7f7292fad9e896373741fcde0a765 (patch)
treedc9547575d9695a48507fd7769bdac33869ab1d1
parentd98b78237f838ffa33db0f59451e633a6f916aa1 (diff)
DB/Spell: Don't allow costume auras from Savory Deviate Delight to stack with each other
Closes #23417
-rw-r--r--sql/updates/world/3.3.5/2019_06_16_01_world.sql10
1 files changed, 10 insertions, 0 deletions
diff --git a/sql/updates/world/3.3.5/2019_06_16_01_world.sql b/sql/updates/world/3.3.5/2019_06_16_01_world.sql
new file mode 100644
index 00000000000..8405d7ca31c
--- /dev/null
+++ b/sql/updates/world/3.3.5/2019_06_16_01_world.sql
@@ -0,0 +1,10 @@
+--
+DELETE FROM `spell_group_stack_rules` WHERE `group_id`=1112;
+INSERT INTO `spell_group_stack_rules` (`group_id`, `stack_rule`) VALUES
+(1112, 1);
+DELETE FROM `spell_group` WHERE `id`=1112;
+INSERT INTO `spell_group` (`id`, `spell_id`) VALUES
+(1112, 8219),
+(1112, 8220),
+(1112, 8221),
+(1112, 8222);