diff options
author | Aokromes <Aokromes@users.noreply.github.com> | 2014-07-09 17:34:23 +0200 |
---|---|---|
committer | Aokromes <Aokromes@users.noreply.github.com> | 2014-07-09 17:34:23 +0200 |
commit | 16afa710318d95a9b86ebbaa2f7ffa8fa3960fc5 (patch) | |
tree | d789b24b26b486a3bf3345ab85cee28afc901b3b | |
parent | 7a67d816d9ebaaa6749206bdfbf0f3f983bfb1a3 (diff) |
DB/Quest: Fix remaining issues with Argent Tournament Chaining
By dr-j, closes #12455
-rw-r--r-- | sql/updates/world/2014_07_09_04_world_quest_template.sql | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/sql/updates/world/2014_07_09_04_world_quest_template.sql b/sql/updates/world/2014_07_09_04_world_quest_template.sql new file mode 100644 index 00000000000..d9fb0a988a6 --- /dev/null +++ b/sql/updates/world/2014_07_09_04_world_quest_template.sql @@ -0,0 +1,12 @@ +-- +UPDATE `quest_template` SET `NextQuestId`=13722 WHERE `Id` =13696; +UPDATE `quest_template` SET `NextQuestId`=13593 WHERE `Id` =13593; +-- The below is to fix the alliance chain, horde chain works fine with above 2 changes, but http://www.wowhead.com/quest=13593 +-- Valiant Of Stormwind had `NextQuestIdChain` set to http://www.wowhead.com/quest=13722 The Valiant's Charge which is +-- Horde (Bloodelf) quest, wowhead says quest is horde but wrongly says it grants stormwind rep too so maybe someone got this wrong +-- whole chain worked fine for humans but for non-humans chain would break after turning in http://www.wowhead.com/quest=13593 as +-- http://www.wowhead.com/quest=13718 would never be offered to non humans once they picked to champion stormwind after doing own faction + +-- Basically the non human quest for starting stormwind chain had nextquestchainid pointing to horde quest and thats what +-- was breaking it for alliance. +UPDATE `quest_template` SET `NextQuestIdChain`=13718 WHERE `Id`=13593; |