Core/Spells: fixed Speed of Light and Denounce talents

This commit is contained in:
Ovahlord
2022-08-31 12:46:04 +02:00
parent bf306d133a
commit 073f7d34db
2 changed files with 35 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
-- Denounce Talent
DELETE FROM `spell_proc` WHERE `SpellId`= -31825;
INSERT INTO `spell_proc` (`SpellId`, `SpellFamilyName`, `SpellFamilyMask1`, `SpellTypeMask`, `SpellPhaseMask`, `HitMask`) VALUES
(-31825, 10, 0x2, 0x1, 0x2, 0x0);
-- Speed of Light Talent
DELETE FROM `spell_proc` WHERE `SpellId`= -85495;
INSERT INTO `spell_proc` (`SpellId`, `SpellFamilyName`, `SpellFamilyMask0`, `SpellTypeMask`, `SpellPhaseMask`, `HitMask`) VALUES
(-85495, 10, 0x400000, 0x4, 0x1, 0x0);
DELETE FROM `spell_script_names` WHERE `ScriptName`= 'spell_pal_speed_of_light';
INSERT INTO `spell_script_names` (`spell_id`, `ScriptName`) VALUES
(-85495, 'spell_pal_speed_of_light');