From a0498fb7214eda26062b4332768b9579343faed8 Mon Sep 17 00:00:00 2001 From: LukasVolgger <55922592+LukasVolgger@users.noreply.github.com> Date: Thu, 9 Apr 2020 01:43:26 +0200 Subject: [PATCH] fix(DB): Fix quest minor text errors (#2727) Fixed a few grammar and spelling errors from various quest texts. Co-authored-by: Endeffect93 <55922592+Endeffect93@users.noreply.github.com> --- .../pending_db_world/rev_1583079134916792500.sql | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 data/sql/updates/pending_db_world/rev_1583079134916792500.sql diff --git a/data/sql/updates/pending_db_world/rev_1583079134916792500.sql b/data/sql/updates/pending_db_world/rev_1583079134916792500.sql new file mode 100644 index 000000000..8abc9761e --- /dev/null +++ b/data/sql/updates/pending_db_world/rev_1583079134916792500.sql @@ -0,0 +1,11 @@ +INSERT INTO `version_db_world` (`sql_rev`) VALUES ('1583079134916792500'); + +-- One space too much: 'Greetings. ' instead of 'Greetings. ' - No locales texts available! +UPDATE `quest_request_items` SET `CompletionText`='Greetings. And welcome to the Harborage.' WHERE `ID`=1392; + +-- Text error grammar: 'hölzernen' instead of 'hölzernes' & wrong location: 'Badlands' instead of 'Searing Gorge'- Text in quest_template is already correct! +UPDATE `quest_template_locale` SET `CompletedText`='Kehrt zum hölzernen Plumpsklo in der sengenden Schlucht zurück.' WHERE `ID`=4449 AND `locale`='deDE'; + +-- Quest obejctives lead to Hellscream's Vigil which was added in Cataclysm. - Text in quest_template is already correct, cannot proof the correctness of other locales! +-- https://wow.gamepedia.com/Mitsuwa +UPDATE `quest_template_locale` SET `Objectives`='Bringt Mitsuwa beim Außenposten von Zoram''gar 8 Trollglücksbringer.' WHERE `ID`=6462 AND `locale`='deDE';