mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-21 17:54:48 +01:00
SQL/StackRules: Added one more stack rule.
Blood Frenzy (Warrior) and Savage Combat should not stack. ref #7667
This commit is contained in:
11
sql/updates/world/2012_10_09_01_world_spell_groups.sql
Normal file
11
sql/updates/world/2012_10_09_01_world_spell_groups.sql
Normal file
@@ -0,0 +1,11 @@
|
||||
-- Blood Frenzy (Warrior) and Savage Combat effect should not stack
|
||||
DELETE FROM `spell_group` WHERE `id`=1119;
|
||||
INSERT INTO `spell_group`(`id`,`spell_id`) VALUES
|
||||
(1119,30069),
|
||||
(1119,58684);
|
||||
|
||||
DELETE FROM `spell_group_stack_rules` WHERE `group_id`=1119;
|
||||
INSERT INTO `spell_group_stack_rules`(`group_id`,`stack_rule`) VALUES (1119,3);
|
||||
|
||||
-- Remove invalid spell_groups
|
||||
DELETE FROM `spell_group` WHERE `id` IN (1038,1039);
|
||||
Reference in New Issue
Block a user