diff --git a/src/game.py b/src/game.py index 673cce7..d4cb717 100755 --- a/src/game.py +++ b/src/game.py @@ -182,9 +182,10 @@ if __name__ == '__main__': move = bplayer.get_move(game) else: move = wplayer.get_move(game) - print("Player {} move: {}".format( - game._nextPlayer, - move + print("Player {} move: {},{}".format( + "Black (X)" if move[0] == 2 else "White (O)", + move[1], + move[2] )) game.push(move) print("Game end - score black:{}, white:{}".format(game.heuristique(1), game.heuristique(2)))