aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSubv <s.v.h21@hotmail.com>2012-10-09 12:04:04 -0500
committerSubv <s.v.h21@hotmail.com>2012-10-09 12:04:04 -0500
commit93189bacc528dcea11039930b3168a16a5b9c3a2 (patch)
tree901cd9738998ea866bb31bf40cec64cb10d13e69
parent5eccf9f4da29d2006e2f07a1e5ec0c01173a9c4a (diff)
SQL/StackRules: Added one more stack rule.
Totem of Wrath and Heart of the Crusader should not stack.
-rw-r--r--sql/updates/world/2012_10_09_02_world_spell_groups.sql9
1 files changed, 9 insertions, 0 deletions
diff --git a/sql/updates/world/2012_10_09_02_world_spell_groups.sql b/sql/updates/world/2012_10_09_02_world_spell_groups.sql
new file mode 100644
index 00000000000..8e4864bc039
--- /dev/null
+++ b/sql/updates/world/2012_10_09_02_world_spell_groups.sql
@@ -0,0 +1,9 @@
+SET @GROUP := 1120;
+-- Totem of Wrath and Heart of the Crusader effect should not stack
+DELETE FROM `spell_group` WHERE `id`=@GROUP;
+INSERT INTO `spell_group`(`id`,`spell_id`) VALUES
+(@GROUP,21183),
+(@GROUP,30708);
+
+DELETE FROM `spell_group_stack_rules` WHERE `group_id`=@GROUP;
+INSERT INTO `spell_group_stack_rules`(`group_id`,`stack_rule`) VALUES (@GROUP,3);