parent
76875b61bb
commit
5453a8acc3
|
|
@ -106,7 +106,7 @@ class RoyalGameOfUr(Game):
|
||||||
for i in range(BOARD_LENGTH):
|
for i in range(BOARD_LENGTH):
|
||||||
d[str(i)] = (
|
d[str(i)] = (
|
||||||
"YOU" if self.board[i][my_index] > 0 else (
|
"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