This commit is contained in:
Maciej Caderek
2022-02-12 23:16:01 +01:00
parent 840545886d
commit 6274236ac7
13 changed files with 227 additions and 177 deletions

View File

@@ -76,8 +76,8 @@ class Game {
move: null,
end: 0,
fen,
check: false,
mate: false,
check: this.game.in_check(),
mate: this.game.in_checkmate(),
turn: this.game.turn(),
material: this.materialInfo(this.game.board()),
placement: this.getPlacement(this.game.fen()),