1.1.1
This commit is contained in:
parent
a1b94b8106
commit
2612f9b1ad
2 changed files with 5 additions and 2 deletions
|
|
@ -143,7 +143,7 @@
|
|||
"Body",
|
||||
"Accessory"
|
||||
],
|
||||
"gameTitle": "Prison Hero version 1.1.0 | TL: DazedAnon & O&M",
|
||||
"gameTitle": "Prison Hero version 1.1.1 | TL: DazedAnon & O&M",
|
||||
"gameoverMe": {
|
||||
"name": "Gameover1",
|
||||
"pan": 0,
|
||||
|
|
|
|||
|
|
@ -127,6 +127,8 @@
|
|||
// 初回イベント未指定の場合は飛ばす
|
||||
break;
|
||||
}
|
||||
// 次の初回イベントはまだ見てないので
|
||||
data.firstPlayed = false;
|
||||
}
|
||||
|
||||
// indexが4以上になることを抑止
|
||||
|
|
@ -144,9 +146,10 @@
|
|||
} else {
|
||||
// 初回イベントの取りこぼしがあるのでそれを流す
|
||||
data.firstPlayed = true;
|
||||
const playedIndex = Math.min(index + 1, 3); // 間違ってもLv.4以上の箇所を見ないように
|
||||
return {
|
||||
data: data,
|
||||
event: events[index + 1].firstEvent,
|
||||
event: events[playedIndex].firstEvent,
|
||||
level: index,
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue