Browse Source

make sure translation is supplied when propagating enables

tags/v1.5.0
louis f 4 years ago
parent
commit
afd850fbca
Signed by: louis <louis@poweris.moe> GPG Key ID: 44D7E1DE4E23D6F2
1 changed files with 4 additions and 1 deletions
  1. +4
    -1
      Js/UtageParse.js

+ 4
- 1
Js/UtageParse.js View File

@@ -141,7 +141,10 @@ 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) {
if (c in this.sceneTranslationsInner[this.currentTranslation] && s in this.sceneTranslationsInner[this.currentTranslation][c]) {
// 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;
}
}


Loading…
Cancel
Save