diff options
author | 2020-04-07 19:38:48 +0300 | |
---|---|---|
committer | 2020-04-07 19:38:48 +0300 | |
commit | 65c496169259c79f537d8aa38d21eb32feb817c2 (patch) | |
tree | 242d29087f2bab79e55127a018976419bf26ea6c /bot/exts/evergreen/tic_tac_toe.py | |
parent | (TicTacToe): Added `symbol` to `Player` class. (diff) |
(TicTacToe): Added `symbol` to player class creation in `tictactoe` command.
Diffstat (limited to 'bot/exts/evergreen/tic_tac_toe.py')
-rw-r--r-- | bot/exts/evergreen/tic_tac_toe.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/evergreen/tic_tac_toe.py b/bot/exts/evergreen/tic_tac_toe.py index bb8f8dac..1873216d 100644 --- a/bot/exts/evergreen/tic_tac_toe.py +++ b/bot/exts/evergreen/tic_tac_toe.py @@ -129,7 +129,7 @@ class TicTacToe(Cog): return game = Game( ctx.channel, - [Player(ctx.author, ctx), Player(opponent, ctx)], + [Player(ctx.author, ctx, Emojis.x), Player(opponent, ctx, Emojis.o)], ctx ) self.games.append(game) |