lower minimum playercount

This commit is contained in:
AlecM33
2022-12-14 20:54:48 -05:00
parent 43495e56bf
commit 10a9c96061
3 changed files with 10 additions and 8 deletions

View File

@@ -25,7 +25,7 @@ class Game {
this.originalModeratorId = originalModeratorId;
this.createTime = createTime;
this.timerParams = timerParams;
this.isFull = false;
this.isFull = this.gameSize === 1 && !this.hasDedicatedModerator;
this.timeRemaining = null;
this.spectators = [];
}