Compare commits
4 Commits
d2db8b8fdd
...
59eb51d8a2
Author | SHA1 | Date | |
---|---|---|---|
59eb51d8a2 | |||
d8928a381f | |||
86efedf43a | |||
a65d0cfd31 |
@ -142,7 +142,7 @@ function buildQuestSelectList() {
|
|||||||
let tl_key = utage.questTranslations[cust][q.QuestMstId];
|
let tl_key = utage.questTranslations[cust][q.QuestMstId];
|
||||||
if (!tl_key) {
|
if (!tl_key) {
|
||||||
console.log("Failed to build quest list: missing translations");
|
console.log("Failed to build quest list: missing translations");
|
||||||
return;
|
continue;
|
||||||
}
|
}
|
||||||
if (!tl_key.Enabled && !utage.quests[cust][q.QuestMstId].Scenes.some((s) => { return utage.sceneTranslations[cust][s].Enabled === true })) {
|
if (!tl_key.Enabled && !utage.quests[cust][q.QuestMstId].Scenes.some((s) => { return utage.sceneTranslations[cust][s].Enabled === true })) {
|
||||||
continue;
|
continue;
|
||||||
@ -191,7 +191,7 @@ function buildSceneSelectList() {
|
|||||||
let tl_key = utage.sceneTranslations[cust][questSceneMstId];
|
let tl_key = utage.sceneTranslations[cust][questSceneMstId];
|
||||||
if (!tl_key) {
|
if (!tl_key) {
|
||||||
console.log("Failed to build scene list: missing translations");
|
console.log("Failed to build scene list: missing translations");
|
||||||
return;
|
continue;
|
||||||
}
|
}
|
||||||
if (!tl_key.Enabled) {
|
if (!tl_key.Enabled) {
|
||||||
continue;
|
continue;
|
||||||
|
@ -1 +1 @@
|
|||||||
Subproject commit 178ec9be36f504418d6aae0bb099d5006bd4186a
|
Subproject commit 4e3efff1afd08fc1022862c1d91b8aa0dd6636a1
|
@ -141,11 +141,16 @@ class UtageInfo {
|
|||||||
for (const k of Object.keys(this.questTranslationsInner[this.currentTranslation][c])) {
|
for (const k of Object.keys(this.questTranslationsInner[this.currentTranslation][c])) {
|
||||||
if (this.questTranslationsInner[this.currentTranslation][c][k].Enabled) {
|
if (this.questTranslationsInner[this.currentTranslation][c][k].Enabled) {
|
||||||
for (const s of this.quests[c][k].Scenes) {
|
for (const s of this.quests[c][k].Scenes) {
|
||||||
|
// only propagate if exists in translation file (THANKS GLOBAL) and translated name is supplied
|
||||||
|
if (c in this.sceneTranslationsInner[this.currentTranslation]
|
||||||
|
&& s in this.sceneTranslationsInner[this.currentTranslation][c]
|
||||||
|
&& this.sceneTranslationsInner[this.currentTranslation][c][s].Name != "") {
|
||||||
this.sceneTranslationsInner[this.currentTranslation][c][s].Enabled = true;
|
this.sceneTranslationsInner[this.currentTranslation][c][s].Enabled = true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
resolve();
|
resolve();
|
||||||
}, (failure) => {
|
}, (failure) => {
|
||||||
console.log(failure);
|
console.log(failure);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user