From a55309403cf83554f334f40dfc18fe8f6c8cce12 Mon Sep 17 00:00:00 2001 From: All <44707108+zxcnxc@users.noreply.github.com> Date: Tue, 7 Sep 2021 07:10:51 +0700 Subject: [PATCH] fix(DB/quest_template): correct objective tracker (#7711) Correct objective tracker Add correct translation for other languages --- .../updates/pending_db_world/rev_1630703356735581407.sql | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 data/sql/updates/pending_db_world/rev_1630703356735581407.sql diff --git a/data/sql/updates/pending_db_world/rev_1630703356735581407.sql b/data/sql/updates/pending_db_world/rev_1630703356735581407.sql new file mode 100644 index 000000000..f3fe9d0ee --- /dev/null +++ b/data/sql/updates/pending_db_world/rev_1630703356735581407.sql @@ -0,0 +1,9 @@ +INSERT INTO `version_db_world` (`sql_rev`) VALUES ('1630703356735581407'); + +-- Change to correct objective tracker and add correct translate objective + +UPDATE `quest_template` SET `QuestCompletionLog` = 'Return to Count Remington Ridgewell at Stormwind Keep in Stormwind City' WHERE `ID` = 543; +-- zhCN +UPDATE `quest_template_locale` SET `CompletedText` = '将匹瑞诺德王冠带给暴风城的雷明顿·瑞治维尔。' WHERE `ID` = 543 AND `locale` = 'zhCN'; +-- zhTW +UPDATE `quest_template_locale` SET `CompletedText` = '将匹瑞诺德王冠带给暴风城的雷明顿·瑞治维尔。' WHERE `ID` = 543 AND `locale` = 'zhTW';