Skip to content

Commit

Permalink
DB/Spells: set the correct learning spells for paladin mounts
Browse files Browse the repository at this point in the history
  • Loading branch information
kandera authored and ZxBiohazardZx committed Jan 14, 2012
1 parent d9a75b3 commit 3bb1435
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions sql/updates/world/2012_01_14_01_world_npc_trainer.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
-- fix summon charger for horde
UPDATE `npc_trainer` SET `spell` = 34767 WHERE `spell` = 34766;
DELETE FROM `spell_required` WHERE `spell_id` = 34767 AND `req_spell` = 33391;
INSERT INTO `spell_required` (`spell_id`, `req_spell`) VALUES (34767, 33391);

-- fix summon charger for alliance
UPDATE `npc_trainer` SET `spell` = 23214 WHERE `spell` = 23215;
DELETE FROM `spell_required` WHERE `spell_id` = 23214 AND `req_spell` = 33391;
INSERT INTO `spell_required` (`spell_id`, `req_spell`) VALUES (23214, 33391);

-- fix dreadsteed for warlocks
UPDATE `npc_trainer` SET `spell` = 23161, `reqskill` = 0, `reqskillvalue` = 0 WHERE `spell` = 23160;
DELETE FROM `spell_required` WHERE `spell_id` = 23161 AND `req_spell` = 33391;
INSERT INTO `spell_required` (`spell_id`, `req_spell`) VALUES (23161, 33391);

0 comments on commit 3bb1435

Please sign in to comment.