aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortkrokli <tkrokli@users.noreply.github.com>2017-08-06 23:41:59 +0200
committertkrokli <tkrokli@users.noreply.github.com>2017-08-06 23:41:59 +0200
commitf9f5a701f48bbb703658a99d689270d6bd7469c6 (patch)
tree54d526549b490b59f9ad05535810fe7b40756e5d
parent184c45cfe0fbe4f3e4fb701f0f99994df98bdc8a (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.
-rw-r--r--sql/updates/world/3.3.5/2017_08_06_04_world.sql8
1 files changed, 8 insertions, 0 deletions
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;