mirror of
https://github.com/AlecM33/Werewolf.git
synced 2025-12-26 15:57:50 +01:00
fix logic that determines whether games are startable when the game is first constructed
This commit is contained in:
@@ -9,8 +9,7 @@ class Game {
|
||||
hasDedicatedModerator,
|
||||
originalModeratorId,
|
||||
createTime,
|
||||
timerParams = null,
|
||||
isTestGame = false
|
||||
timerParams = null
|
||||
) {
|
||||
this.accessCode = accessCode;
|
||||
this.status = status;
|
||||
@@ -27,9 +26,6 @@ class Game {
|
||||
this.previousModeratorId = null;
|
||||
this.createTime = createTime;
|
||||
this.timerParams = timerParams;
|
||||
this.isStartable = (this.gameSize === 1 && !this.hasDedicatedModerator)
|
||||
|| (this.gameSize === 0 && this.hasDedicatedModerator)
|
||||
|| isTestGame;
|
||||
this.timeRemaining = null;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -91,10 +91,12 @@ class GameManager {
|
||||
req.hasDedicatedModerator,
|
||||
moderator.id,
|
||||
new Date().toJSON(),
|
||||
req.timerParams,
|
||||
req.isTestGame
|
||||
req.timerParams
|
||||
);
|
||||
newGame.people = initializePeopleForGame(req.deck, moderator, this.shuffle, req.isTestGame, newGame.gameSize);
|
||||
newGame.isStartable = newGame.people.filter(person => person.userType === USER_TYPES.PLAYER
|
||||
|| person.userType === USER_TYPES.TEMPORARY_MODERATOR
|
||||
|| person.userType === USER_TYPES.BOT).length === newGame.gameSize;
|
||||
await this.eventManager.publisher.set(newAccessCode, JSON.stringify(newGame), {
|
||||
EX: PRIMITIVES.STALE_GAME_SECONDS
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user