found the lost tile
This commit is contained in:
parent
94a619b1f0
commit
1ccb2c7edb
2 changed files with 3 additions and 2 deletions
File diff suppressed because one or more lines are too long
|
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue