mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-25 03:12:09 +01:00
Core/Spells: Fix paladin talent "Eye for an Eye"
Note: Add proc flags hack (default proc flags not working)
This commit is contained in:
9
sql/updates/world/2013_06_28_01_world_spell_misc_434.sql
Normal file
9
sql/updates/world/2013_06_28_01_world_spell_misc_434.sql
Normal file
@@ -0,0 +1,9 @@
|
||||
DELETE FROM `spell_script_names` WHERE `ScriptName`="spell_pal_eye_for_an_eye";
|
||||
INSERT INTO `spell_script_names` (`spell_id`,`ScriptName`) VALUES
|
||||
(9799, "spell_pal_eye_for_an_eye"),
|
||||
(25988, "spell_pal_eye_for_an_eye");
|
||||
|
||||
DELETE FROM `spell_proc_event` WHERE `entry` IN (9799,25988);
|
||||
INSERT INTO `spell_proc_event` (`entry`, `SchoolMask`, `SpellFamilyName`, `SpellFamilyMask0`, `SpellFamilyMask1`, `SpellFamilyMask2`, `procFlags`, `procEx`, `ppmRate`, `CustomChance`, `Cooldown`) VALUES
|
||||
(9799, 0, 0, 0, 0, 0, 0x10000, 0, 0, 0, 0),
|
||||
(25988, 0, 0, 0, 0, 0, 0x10000, 0, 0, 0, 0);
|
||||
Reference in New Issue
Block a user