fix(DB/SpellGroups): stacking rules of Power Infusion with Haste effects (#24164)

This commit is contained in:
sogladev 2025-12-20 16:27:28 +01:00 committed by GitHub
parent bb18f0a58c
commit 5ef7293e81
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -0,0 +1,7 @@
--
-- Temporary Haste Buffs (PI, Heroism, Bloodlust)
-- 3 SPELL_GROUP_STACK_RULE_EXCLUSIVE_SAME_EFFECT Same effects of spells will not stack, yet auras will remain on a target
UPDATE `spell_group_stack_rules` SET `stack_rule`=3 WHERE `group_id`=1122;
-- Power Infusion and Arcane Power
-- 4 SPELL_GROUP_STACK_RULE_EXCLUSIVE_HIGHEST Only Highest effect will remain on target
UPDATE `spell_group_stack_rules` SET `stack_rule`=4 WHERE `group_id`=1123;