diff --git a/src/Game.php b/src/Game.php index 28c01f4..4023c80 100644 --- a/src/Game.php +++ b/src/Game.php @@ -45,8 +45,8 @@ class Game */ public function getResult(): Gameresult { - if (!is_null(parent::getResult())) { - return parent::getResult(); + if (!is_null($this->result)) { + return $this->result; } $whiteResult = $this->getWhite()->getResult();