mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-02-05 16:39:08 +01:00
Core/Spells: fixed Speed of Light and Denounce talents
This commit is contained in:
13
sql/updates/world/4.3.4/2022_08_31_00_world.sql
Normal file
13
sql/updates/world/4.3.4/2022_08_31_00_world.sql
Normal 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');
|
||||
Reference in New Issue
Block a user