found the lost tile

This commit is contained in:
Didictateur 2025-04-13 15:18:37 +02:00
parent 94a619b1f0
commit 1ccb2c7edb
2 changed files with 3 additions and 2 deletions

File diff suppressed because one or more lines are too long

View file

@ -210,7 +210,8 @@ export class Game {
private advanceTurn(): void { private advanceTurn(): void {
this.updateWaitingTime(); this.updateWaitingTime();
this.turn = (this.turn + 1) % GAME_CONSTANTS.PLAYERS; this.turn = (this.turn + 1) % GAME_CONSTANTS.PLAYERS;
this.hasPicked = false; this.pick(this.turn);
this.hasPicked = true;
this.hasPlayed = false; this.hasPlayed = false;
} }