aboutsummaryrefslogtreecommitdiff
path: root/sql
diff options
context:
space:
mode:
authorVincent-Michael <Vincent_Michael@gmx.de>2013-06-28 22:13:38 +0200
committerVincent-Michael <Vincent_Michael@gmx.de>2013-06-28 22:13:38 +0200
commit23fcda3481c74969eb1333d02bd01bc8d84e4ec8 (patch)
treecafc09e2666ae4df66d808b037cb6c0f22ec6aec /sql
parent7cc6dfaebc35af1b7015c6d5a3a9b367b8a36d95 (diff)
Core/Spells: Fix paladin talent "Eye for an Eye"
Note: Add proc flags hack (default proc flags not working)
Diffstat (limited to 'sql')
-rw-r--r--sql/updates/world/2013_06_28_01_world_spell_misc_434.sql9
1 files changed, 9 insertions, 0 deletions
diff --git a/sql/updates/world/2013_06_28_01_world_spell_misc_434.sql b/sql/updates/world/2013_06_28_01_world_spell_misc_434.sql
new file mode 100644
index 00000000000..2571007f65b
--- /dev/null
+++ b/sql/updates/world/2013_06_28_01_world_spell_misc_434.sql
@@ -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);