diff options
| author | Vincent-Michael <Vincent_Michael@gmx.de> | 2013-07-21 03:19:14 +0200 |
|---|---|---|
| committer | Vincent-Michael <Vincent_Michael@gmx.de> | 2013-07-21 03:19:14 +0200 |
| commit | afc242211caba4eace65abfcd3345ff0478ecbdc (patch) | |
| tree | 5ec73cf4fbcc1a21b89b497cdf0aa04f6425d011 /sql | |
| parent | 0d0de8bb7a5dc821a3bfbe92faa55e32d49d7e9c (diff) | |
Core/Spells: Fix warlock talent "Aftermath"
Diffstat (limited to 'sql')
| -rw-r--r-- | sql/updates/world/2013_07_21_01_world_spell_script_misc_434.sql | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/sql/updates/world/2013_07_21_01_world_spell_script_misc_434.sql b/sql/updates/world/2013_07_21_01_world_spell_script_misc_434.sql new file mode 100644 index 00000000000..6833b3cb548 --- /dev/null +++ b/sql/updates/world/2013_07_21_01_world_spell_script_misc_434.sql @@ -0,0 +1,13 @@ +DELETE FROM `spell_script_names` WHERE `spell_id`=-85113; +INSERT INTO `spell_script_names`(`spell_id`, `ScriptName`) VALUES +(-85113,'spell_warl_aftermath'); + +DELETE FROM `spell_ranks` WHERE `first_spell_id`=85113; +INSERT INTO `spell_ranks` (`first_spell_id`, `spell_id`, `rank`) VALUES +(85113, 85113, 1), +(85113, 85114, 2); + +DELETE FROM `spell_proc_event` WHERE `entry` IN (85113,85114); +INSERT INTO `spell_proc_event` (`entry`, `SchoolMask`, `SpellFamilyName`, `SpellFamilyMask0`, `SpellFamilyMask1`, `SpellFamilyMask2`, `procFlags`, `procEx`, `ppmRate`, `CustomChance`, `Cooldown`) VALUES +(85113, 0, 5, 0x20, 0x800000, 0, 0, 0, 0, 0, 0), +(85114, 0, 5, 0x20, 0x800000, 0, 0, 0, 0, 0, 0); |
