mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-16 07:30:42 +01:00
SQL/StackRules: Added a stack rule for some spells.
Improved Scorch, Improved Shadow Bolt and Winter's Chill should not stack ref #7667
This commit is contained in:
9
sql/updates/world/2012_10_09_00_world_spell_groups.sql
Normal file
9
sql/updates/world/2012_10_09_00_world_spell_groups.sql
Normal file
@@ -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);
|
||||
Reference in New Issue
Block a user