Debug ChessArbiter::IsBlackTurn()

This commit is contained in:
Loic Guegan 2022-03-04 18:57:15 +01:00
parent b5f647e72a
commit adaec1ba14

View file

@ -30,7 +30,7 @@ std::string ChessArbiter::GetFEN() { return (FENParser::Serialize(fen)); }
std::string ChessArbiter::GetBoard() { return (fen.board); }
bool ChessArbiter::IsBlackTurn() { return (fen.player == 'b'); }
bool ChessArbiter::IsBlackTurn() { return (fen.player); }
bool ChessArbiter::IsCheck(bool isBlack) {
std::string kingloc = board.GetKingLocation(isBlack);