Scripts/Spells: Fixed Rogue's Recuperate, Mage's Conjure Refreshment and Paladin's Sacred Shield.

Also fixed SQL file naming.
This commit is contained in:
Warpten
2012-12-01 14:58:56 +01:00
parent fc6c93d0c4
commit 4d111c10f0
5 changed files with 175 additions and 4 deletions

View File

@@ -0,0 +1,16 @@
-- Conjure Refreshment
DELETE FROM `spell_script_names` WHERE `spell_id`=42955;
INSERT INTO `spell_script_names` (`spell_id`,`ScriptName`) VALUES
(42955, 'spell_mage_conjure_refreshment');
-- Sacred Shield
DELETE FROM spell_proc_event WHERE entry=85285;
INSERT INTO spell_proc_event (entry, Cooldown) VALUES(85285, 60);
DELETE FROM spell_script_names WHERE spell_id=85285;
INSERT INTO spell_script_names (spell_id, ScriptName) VALUES
(85285, 'spell_pal_sacred_shield');
-- Recuperate
DELETE FROM spell_script_names WHERE spell_id=73651;
INSERT INTO spell_script_names (spell_id, ScriptName) VALUES
(73651, "spell_rog_recuperate");