Adding piece depiction next players turn identifier

This commit is contained in:
sloumdrone 2018-12-29 20:03:44 -08:00
parent 987eda165a
commit 974d453494
1 changed files with 1 additions and 1 deletions

2
oberon
View File

@ -117,7 +117,7 @@ def play_game(gid):
ppiece = 1 if res[0][4] % 2 == 0 else 0
print_header()
print('{} vs. {}: {}\'s turn'.format(res[0][1], res[0][2], pturn))
print('{} vs. {}: {}\'s turn {}'.format(res[0][1], res[0][2], pturn, pieces[ppiece]))
print_board(board)
if not pturn == username: