diff options
| author | Subv <s.v.h21@hotmail.com> | 2012-10-09 12:04:04 -0500 |
|---|---|---|
| committer | Subv <s.v.h21@hotmail.com> | 2012-10-09 12:04:04 -0500 |
| commit | 93189bacc528dcea11039930b3168a16a5b9c3a2 (patch) | |
| tree | 901cd9738998ea866bb31bf40cec64cb10d13e69 | |
| parent | 5eccf9f4da29d2006e2f07a1e5ec0c01173a9c4a (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.sql | 9 |
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); |
