Only allow moves if there is no winner
This commit is contained in:
parent
de2884c16d
commit
05c935d3fa
1 changed files with 7 additions and 4 deletions
|
@ -257,12 +257,15 @@ export class Game
|
|||
*/
|
||||
addChip(x, y)
|
||||
{
|
||||
for (let i = Game.#height - 1; i >= 0; i--)
|
||||
if (!this.winner)
|
||||
{
|
||||
if (this.board[i][x] === "")
|
||||
for (let i = Game.#height - 1; i >= 0; i--)
|
||||
{
|
||||
this.board[i][x] = this.state.currentPlayer;
|
||||
return true;
|
||||
if (this.board[i][x] === "")
|
||||
{
|
||||
this.board[i][x] = this.state.currentPlayer;
|
||||
return true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue