fixed player supporting global
这个提交包含在:
父节点
86efedf43a
当前提交
d8928a381f
@ -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 06a52db84c21ce7e584a493cc278bb6e29e940cc
|
||||
Subproject commit 4e3efff1afd08fc1022862c1d91b8aa0dd6636a1
|
@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
正在加载...
x
在新工单中引用
屏蔽一个用户