enable-guard play all

这个提交包含在:
louis f 2019-05-17 18:53:17 -04:00
父节点 0d522b55c5
当前提交 9dc0c8f9cf

查看文件

@ -263,8 +263,13 @@ function sceneDropDownChanged(event) {
let scene = utage.quests[cust][questMstId].Scenes;
resetPlaylist();
for (const s of scene) {
utage.scenes[cust][s]['QuestSceneMstId'] = s;
scenePlaylist.push(utage.scenes[cust][s]);
let tl_key = utage.sceneTranslations[cust][s];
if (tl_key) {
if (utage.sceneTranslations[cust][s].Enabled) {
utage.scenes[cust][s]['QuestSceneMstId'] = s;
scenePlaylist.push(utage.scenes[cust][s]);
}
}
}
playNext();
return;