fix(DB/quest_template): correct objective tracker (#7711)

Correct objective tracker
Add correct translation for other languages
This commit is contained in:
All
2021-09-07 07:10:51 +07:00
committed by GitHub
parent 1f893f9796
commit a55309403c

View File

@@ -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';