aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortkrokli <tkrokli@users.noreply.github.com>2017-08-06 23:41:59 +0200
committerShauren <shauren.trinity@gmail.com>2020-08-22 20:12:23 +0200
commit99b8221456a96b29d7c0295a6cede029c4194a6a (patch)
treeef0e960977ce6c725cc52aaa0561253dbe242228
parent129dd7c9091d3fafc0f5e10b795224bc9418d006 (diff)
DB/Quest: You, Robot (10248): missing progress text + partial RewardText
http://www.wowhead.com/quest=10248/you-robot - Progress text (quest_request_items) was missing completely (request item: Scrap Reaver X6000 Controller) - Reward Text (quest_offer_reward.RewardText) had lost '-52 Nether-Rocket from certain doom!' from the end. (cherry picked from commit f9f5a701f48bbb703658a99d689270d6bd7469c6)
-rw-r--r--sql/updates/world/master/2020_08_22_13_world_2017_08_06_04_world.sql8
1 files changed, 8 insertions, 0 deletions
diff --git a/sql/updates/world/master/2020_08_22_13_world_2017_08_06_04_world.sql b/sql/updates/world/master/2020_08_22_13_world_2017_08_06_04_world.sql
new file mode 100644
index 00000000000..de143307d9a
--- /dev/null
+++ b/sql/updates/world/master/2020_08_22_13_world_2017_08_06_04_world.sql
@@ -0,0 +1,8 @@
+-- DB/Quest: You, Robot (quest ID 10248): missing Progress text + end of RewardText
+DELETE FROM `quest_request_items` WHERE `ID`=10248;
+INSERT INTO `quest_request_items` (`ID`,`EmoteOnComplete`,`EmoteOnIncomplete`,`CompletionText`,`VerifiedBuild`) VALUES
+(10248, 1, 0, 'What did you think? Still needs some tweaking, eh?', 12340);
+
+UPDATE `quest_offer_reward`
+ SET `RewardText`="Well, my boy that certainly was exciting! And for my money, I'd say that the Scrap Reaver X6000 performed admirably, despite its rookie pilot.$B$BHehe, no, don't take offense, I was just kidding. After all, you just saved Area 52 and the X-52 Nether-Rocket from certain doom!"
+ WHERE `Id`=10248;