This commit is contained in:
syuilo
2019-02-16 01:45:26 +09:00
parent 8524803b06
commit 71f247c55f
2 changed files with 3 additions and 3 deletions

View File

@ -126,8 +126,8 @@ export default class extends Module {
if (game == null) return;
// ゲーム開始から3分以上経過していたら
if (Date.now() - game.startedAt >= 1000 * 60 * 3) {
// ゲーム開始から5分以上経過していたら
if (Date.now() - game.startedAt >= 1000 * 60 * 5) {
this.finish(game);
}
}