summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/ChessArbiter.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ChessArbiter.cpp b/src/ChessArbiter.cpp
index 59afaf7..67dfb36 100644
--- a/src/ChessArbiter.cpp
+++ b/src/ChessArbiter.cpp
@@ -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);