aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortkrokli <tkrokli@users.noreply.github.com>2017-08-05 05:19:34 +0200
committerShauren <shauren.trinity@gmail.com>2020-08-22 13:59:09 +0200
commitc053cc1b04cb2da8d3598728582873f288192e7e (patch)
tree807931a7f9a87549c967c56d7e06d93b59ae6185
parent885e172f4d29710a47f003c58b4d9c24edf8cc8a (diff)
DB/Quests: Terokkar Forest quest text typos
Fixed the following typos: - 'Clues in the Thicket' (9971) RewardText typo (Is it was/Is it what) - `An Unseen Hand` (10013) RewardText typo (duplicated words "it to me") - 'Evil Draws Near' (10923) Progress typo (ben/been) (cherry picked from commit 446ea121271c77407429368e5491a84eef7fc19b)
-rw-r--r--sql/updates/world/master/2020_08_22_09_world_2017_08_05_00_world.sql12
1 files changed, 12 insertions, 0 deletions
diff --git a/sql/updates/world/master/2020_08_22_09_world_2017_08_05_00_world.sql b/sql/updates/world/master/2020_08_22_09_world_2017_08_05_00_world.sql
new file mode 100644
index 00000000000..52a9289ad7b
--- /dev/null
+++ b/sql/updates/world/master/2020_08_22_09_world_2017_08_05_00_world.sql
@@ -0,0 +1,12 @@
+-- 'Clues in the Thicket' (Quest ID 9971) RewardText typo (Is it was/Is it what)
+UPDATE `quest_offer_reward`
+ SET `RewardText`="So, I was right. That was the corpse of one of the Broken? And you can confirm that there was a strange object on the ground next to him?$B$BThis doesn't make any sense. What would one of the Broken be doing here? And what is that thing it had with him?$B$BIs it what caused all of this death?"
+ WHERE `ID`=9971;
+-- `An Unseen Hand` (Quest ID 10013) RewardText typo (2x "it to me")
+UPDATE `quest_offer_reward`
+ SET `RewardText`="<Rokag takes the plans from you and looks them over.>$B$BSo Kaide was right! Those fel orc scum are up to something. I never would've guessed they were colluding with the blood elves, though.$B$BAccording to this map, the fel orcs are to keep us busy... but why? This is disturbing news, $N. You were correct in bringing it to me right away."
+ WHERE `ID` = 10013;
+-- 'Evil Draws Near' (Quest ID 10923) Progress typo (ben/been)
+UPDATE `quest_request_items`
+ SET `CompletionText` = "Has Teribus the Cursed been purged from the skies of Terokkar?"
+ WHERE `ID` = 10923;