diff options
author | Subv <s.v.h21@hotmail.com> | 2012-10-09 11:01:51 -0500 |
---|---|---|
committer | Subv <s.v.h21@hotmail.com> | 2012-10-09 11:01:51 -0500 |
commit | cce014a2ba48460722e4308bfdcf632e2a2817ec (patch) | |
tree | cec5e56449e1463a9aeae09c7fbc71dca1f08a99 | |
parent | c18b3d7169340de25d18da85d7ad1f1d65f2bcfb (diff) |
SQL/StackRules: Added a stack rule for some spells.
Improved Scorch, Improved Shadow Bolt and Winter's Chill should not stack
ref #7667
-rw-r--r-- | sql/updates/world/2012_10_09_00_world_spell_groups.sql | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/sql/updates/world/2012_10_09_00_world_spell_groups.sql b/sql/updates/world/2012_10_09_00_world_spell_groups.sql new file mode 100644 index 00000000000..71f58c6322e --- /dev/null +++ b/sql/updates/world/2012_10_09_00_world_spell_groups.sql @@ -0,0 +1,9 @@ +-- Improved Scorch, Improved Shadow Bolt and Winter's Chill effect should not stack +DELETE FROM `spell_group` WHERE `id`=1037; +INSERT INTO `spell_group`(`id`,`spell_id`) VALUES +(1037,22959), +(1037,17800), +(1037,12579); + +DELETE FROM `spell_group_stack_rules` WHERE `group_id`=1037; +INSERT INTO `spell_group_stack_rules`(`group_id`,`stack_rule`) VALUES (1037,3); |