aboutsummaryrefslogtreecommitdiff
path: root/sql/updates
diff options
context:
space:
mode:
Diffstat (limited to 'sql/updates')
-rw-r--r--sql/updates/9671_world_spell_group.sql5
-rw-r--r--sql/updates/9671_world_spell_group_stack_rules.sql3
2 files changed, 8 insertions, 0 deletions
diff --git a/sql/updates/9671_world_spell_group.sql b/sql/updates/9671_world_spell_group.sql
new file mode 100644
index 00000000000..9de18ff577a
--- /dev/null
+++ b/sql/updates/9671_world_spell_group.sql
@@ -0,0 +1,5 @@
+-- Unstable Affliction / Immolate stacking from same caster
+DELETE FROM `spell_group` where `id`=1112;
+INSERT INTO spell_group (id, spell_id) VALUES
+(1112, 348),
+(1112, 30108);
diff --git a/sql/updates/9671_world_spell_group_stack_rules.sql b/sql/updates/9671_world_spell_group_stack_rules.sql
new file mode 100644
index 00000000000..9eecc6a2b49
--- /dev/null
+++ b/sql/updates/9671_world_spell_group_stack_rules.sql
@@ -0,0 +1,3 @@
+-- Unstable Affliction / Immolate stacking from same caster
+DELETE FROM `spell_group_stack_rules` where `group_id`=1112;
+INSERT INTO spell_group_stack_rules (group_id, stack_rule) VALUES (1112, 2);