parent
76875b61bb
commit
2139e7aee7
|
|
@ -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 (
|
||||
""
|
||||
)))
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue