From ed9295affade4d3b94528163badca854667eb23f Mon Sep 17 00:00:00 2001 From: All <44707108+zxcnxc@users.noreply.github.com> Date: Thu, 16 Sep 2021 22:11:24 +0700 Subject: [PATCH] fix(DB/quest_template): correct text (#7835) https://tbc.wowhead.com/quest=2459/ferocitas-the-dream-eater https://tbc.wowhead.com/quest=287/frostmane-hold https://tbc.wowhead.com/quest=317/stocking-jetsteam --- .../rev_1631435267041671233.sql | 27 +++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 data/sql/updates/pending_db_world/rev_1631435267041671233.sql diff --git a/data/sql/updates/pending_db_world/rev_1631435267041671233.sql b/data/sql/updates/pending_db_world/rev_1631435267041671233.sql new file mode 100644 index 000000000..c4d84e2c3 --- /dev/null +++ b/data/sql/updates/pending_db_world/rev_1631435267041671233.sql @@ -0,0 +1,27 @@ +INSERT INTO `version_db_world` (`sql_rev`) VALUES ('1631435267041671233'); + +-- Frostmane Hold + +UPDATE `quest_template` SET `QuestCompletionLog` = 'Return to Senir Whitebeard at Kharanos in Dun Morogh.' WHERE `ID` = 287; +-- zhCN +UPDATE `quest_template_locale` SET `CompletedText` = '前往丹莫罗并在卡拉诺斯找到塞内尔·白胡子。' WHERE `ID` = 287 AND `locale` = 'zhCN'; + +-- Stocking Jetsteam + +UPDATE `quest_template` SET `QuestCompletionLog` = 'Return to Pilot Bellowfiz at Steelgrill\'s in Dun Morogh.' WHERE `ID` = 317; +-- esES +UPDATE `quest_template_locale` SET `CompletedText` = 'Regresa con Piloto Bramiz en Steelgrill\'s en Dun Morogh.' WHERE `ID` = 317 AND `locale` = 'esES'; +-- esMX +UPDATE `quest_template_locale` SET `CompletedText` = 'Regresa con Piloto Bramiz en Steelgrill\'s en Dun Morogh.' WHERE `ID` = 317 AND `locale` = 'esMX'; +-- frFR +UPDATE `quest_template_locale` SET `CompletedText` = 'Retournez voir le Pilote Claquesoufflet au Steelgrill\'s à Dun Morogh' WHERE `ID` = 317 AND `locale` = 'frFR'; +-- ruRU +UPDATE `quest_template_locale` SET `CompletedText` = 'Вернитесь к Пилот Толстопуз в Сталегрилл в Дун Мороге.' WHERE `ID` = 317 AND `locale` = 'ruRU'; +-- zhCN +UPDATE `quest_template_locale` SET `CompletedText` = '把它们交给钢架补给站的驾驶员贝隆·风箱。' WHERE `ID` = 317 AND `locale` = 'zhCN'; + +-- Ferocitas the dream eater + +UPDATE `quest_template` SET `QuestCompletionLog` = 'Return to Tallonkai Swiftroot at Dolanaar in Teldrassil.' WHERE `ID` = 2459; +-- zhCN +UPDATE `quest_template_locale` SET `CompletedText` = '返回泰达希尔多兰纳尔的塔隆凯迅根。' WHERE `ID` = 2459 AND `locale` = 'zhCN';