mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-01-16 10:30:27 +00:00
fix(Scripts/SunwellPlateau): Spell Fury spellsteal resets stacks and is no longer consumes on dot ticks (#22125)
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
--
|
||||
DELETE FROM `spell_script_names` WHERE `spell_id` = 46102;
|
||||
INSERT INTO `spell_script_names` (`spell_id`, `ScriptName`) VALUES
|
||||
(46102, 'spell_spell_fury_aura');
|
||||
|
||||
-- Remove 'Deal periodic damage'
|
||||
SET @procFlags = (0x4000 | 0x10000);
|
||||
DELETE FROM `spell_proc_event` WHERE `entry` = 46102;
|
||||
INSERT INTO `spell_proc_event` (`entry`, `procFlags`) VALUES
|
||||
(46102, @procFlags);
|
||||
Reference in New Issue
Block a user