From 93189bacc528dcea11039930b3168a16a5b9c3a2 Mon Sep 17 00:00:00 2001 From: Subv Date: Tue, 9 Oct 2012 12:04:04 -0500 Subject: SQL/StackRules: Added one more stack rule. Totem of Wrath and Heart of the Crusader should not stack. --- sql/updates/world/2012_10_09_02_world_spell_groups.sql | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 sql/updates/world/2012_10_09_02_world_spell_groups.sql (limited to 'sql') 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); -- cgit v1.2.3