From dbdec581a7fd22caf63ac2ddb806256da0863044 Mon Sep 17 00:00:00 2001 From: programarivm Date: Wed, 22 May 2024 12:49:11 +0200 Subject: [PATCH] Responded with the fifty-move rule value --- src/Game/Game.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Game/Game.php b/src/Game/Game.php index 4b523fb1..07575903 100644 --- a/src/Game/Game.php +++ b/src/Game/Game.php @@ -151,6 +151,7 @@ public function state(): object 'isMate' => $this->board->isMate(), 'isStalemate' => $this->board->isStalemate(), 'isFivefoldRepetition' => $this->board->isFivefoldRepetition(), + 'isFiftyMoveDraw' => $this->board->isFiftyMoveDraw(), 'mode' => $this->getMode(), ]; }