mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-16 07:30:42 +01:00
Core/Spells: Added spellgroup support to HandleModCastingSpeed (#23592)
And fixed stack of Power Infusion, Bloodlust, Icy veins and Heroism.
This commit is contained in:
11
sql/updates/world/3.3.5/2019_07_24_00_world.sql
Normal file
11
sql/updates/world/3.3.5/2019_07_24_00_world.sql
Normal file
@@ -0,0 +1,11 @@
|
||||
-- Heroism/Bloodlust should not stack with Power Infusion
|
||||
DELETE FROM `spell_group` WHERE `id`=1122;
|
||||
INSERT INTO `spell_group` (`id`, `spell_id`) VALUES
|
||||
(1122,32182),
|
||||
(1122,2825),
|
||||
(1122,10060),
|
||||
(1122,12472);
|
||||
|
||||
DELETE FROM `spell_group_stack_rules` WHERE `group_id`=1122;
|
||||
INSERT INTO `spell_group_stack_rules` (`group_id`, `stack_rule`) VALUES
|
||||
(1122,4);
|
||||
Reference in New Issue
Block a user