diff --git a/pyclient/games/ur.py b/pyclient/games/ur.py index 46719be..e50f819 100644 --- a/pyclient/games/ur.py +++ b/pyclient/games/ur.py @@ -106,7 +106,7 @@ class RoyalGameOfUr(Game): for i in range(BOARD_LENGTH): d[str(i)] = ( "YOU" if self.board[i][my_index] > 0 else ( - "ENEMY" if my_index not in SAFE_FIELDS and self.board[i][ot_index] > 0 else ( + "ENEMY" if i not in SAFE_FIELDS and self.board[i][ot_index] > 0 else ( "" )))