6
0

fixed player supporting global

Dieser Commit ist enthalten in:
argo neus 2020-07-31 10:53:46 +02:00 committet von louis
Ursprung 47e250ba89
Commit bdc076b664
Signiert von: louis
GPG-Schlüssel-ID: 44D7E1DE4E23D6F2
3 geänderte Dateien mit 6 neuen und 4 gelöschten Zeilen

Datei anzeigen

@ -142,7 +142,7 @@ function buildQuestSelectList() {
let tl_key = utage.questTranslations[cust][q.QuestMstId];
if (!tl_key) {
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 })) {
continue;
@ -191,7 +191,7 @@ function buildSceneSelectList() {
let tl_key = utage.sceneTranslations[cust][questSceneMstId];
if (!tl_key) {
console.log("Failed to build scene list: missing translations");
return;
continue;
}
if (!tl_key.Enabled) {
continue;

@ -1 +1 @@
Subproject commit 178ec9be36f504418d6aae0bb099d5006bd4186a
Subproject commit ac0bfbd699431e9befdd843379e7c91ad1014cec

Datei anzeigen

@ -141,7 +141,9 @@ class UtageInfo {
for (const k of Object.keys(this.questTranslationsInner[this.currentTranslation][c])) {
if (this.questTranslationsInner[this.currentTranslation][c][k].Enabled) {
for (const s of this.quests[c][k].Scenes) {
this.sceneTranslationsInner[this.currentTranslation][c][s].Enabled = true;
if (c in this.sceneTranslationsInner[this.currentTranslation] && s in this.sceneTranslationsInner[this.currentTranslation][c]) {
this.sceneTranslationsInner[this.currentTranslation][c][s].Enabled = true;
}
}
}
}