diff options
author | Nay <dnpd.dd@gmail.com> | 2011-09-04 01:09:38 +0100 |
---|---|---|
committer | Nay <dnpd.dd@gmail.com> | 2011-09-04 01:09:38 +0100 |
commit | 12c3e1465412ff35d7845d16cbbcf234b02b4f68 (patch) | |
tree | 72923a8cb222c36d80a864ec285a29a466773bd2 | |
parent | 006da9cf9dff956b62a474e5cc0132955a5314df (diff) |
DB/Quests: Fix a BRD quest chain. Closes #2748
-rw-r--r-- | sql/updates/world/2011_09_04_world_quest_template.sql | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/sql/updates/world/2011_09_04_world_quest_template.sql b/sql/updates/world/2011_09_04_world_quest_template.sql new file mode 100644 index 00000000000..4ff774b65b4 --- /dev/null +++ b/sql/updates/world/2011_09_04_world_quest_template.sql @@ -0,0 +1,6 @@ +UPDATE `quest_template` SET `RequiredRaces`=1101 WHERE `entry` IN (4362,4363); -- The Fate of the Kingdom & The Princess's Surprise +UPDATE `quest_template` SET `NextQuestId`=4342 WHERE `entry`=4341; -- Kharan Mighthammer +UPDATE `quest_template` SET `PrevQuestId`=4341 WHERE `entry`=4342; -- Kharan's Tale +UPDATE `quest_template` SET `PrevQuestId`=4342 WHERE `entry`=4361; -- The Bearer of Bad News +UPDATE `quest_template` SET `PrevQuestId`=4361 WHERE `entry`=4362; -- The Fate of the Kingdom +UPDATE `quest_template` SET `PrevQuestId`=4362 WHERE `entry`=4363; -- The Princess's Surprise |