From f9f5a701f48bbb703658a99d689270d6bd7469c6 Mon Sep 17 00:00:00 2001 From: tkrokli Date: Sun, 6 Aug 2017 23:41:59 +0200 Subject: 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. --- sql/updates/world/3.3.5/2017_08_06_04_world.sql | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 sql/updates/world/3.3.5/2017_08_06_04_world.sql (limited to 'sql') diff --git a/sql/updates/world/3.3.5/2017_08_06_04_world.sql b/sql/updates/world/3.3.5/2017_08_06_04_world.sql new file mode 100644 index 00000000000..de143307d9a --- /dev/null +++ b/sql/updates/world/3.3.5/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; -- cgit v1.2.3