aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar ks129 <[email protected]>2020-04-07 19:38:48 +0300
committerGravatar ks129 <[email protected]>2020-04-07 19:38:48 +0300
commit65c496169259c79f537d8aa38d21eb32feb817c2 (patch)
tree242d29087f2bab79e55127a018976419bf26ea6c
parent(TicTacToe): Added `symbol` to `Player` class. (diff)
(TicTacToe): Added `symbol` to player class creation in `tictactoe` command.
-rw-r--r--bot/exts/evergreen/tic_tac_toe.py2
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)