diff options
author | kandera <kandera@trinity.contrib> | 2012-01-14 09:44:00 +0100 |
---|---|---|
committer | ZxBiohazardZx <zxbiohazardzx@gmail.com> | 2012-01-14 09:44:00 +0100 |
commit | 3bb143563a91cecebea3aeabc06ddfffe429c755 (patch) | |
tree | a67f2582a90adfbb186327e66446174f1c3c3f64 | |
parent | d9a75b38281a080e01a50466175d8f94373a5386 (diff) |
DB/Spells: set the correct learning spells for paladin mounts
closes #4778
-rw-r--r-- | sql/updates/world/2012_01_14_01_world_npc_trainer.sql | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/sql/updates/world/2012_01_14_01_world_npc_trainer.sql b/sql/updates/world/2012_01_14_01_world_npc_trainer.sql new file mode 100644 index 00000000000..0f3e598b5a3 --- /dev/null +++ b/sql/updates/world/2012_01_14_01_world_npc_trainer.sql @@ -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); |