From c7bd4eaf2188fc026eb947b515f043b59080c35d Mon Sep 17 00:00:00 2001 From: Phxntxm Date: Sun, 14 Aug 2016 15:23:17 -0500 Subject: [PATCH] Corrected syntax error --- cogs/tictactoe.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cogs/tictactoe.py b/cogs/tictactoe.py index 3c87a54..a6331e3 100644 --- a/cogs/tictactoe.py +++ b/cogs/tictactoe.py @@ -80,7 +80,7 @@ class TicTacToe: # Return whoever is x's so that we know who is going first return self.boards[server_id].challengers['x'] - @commands.command(name='tictactoe start', aliases['tictactoe challenge'], pass_context=True, no_pm=True) + @commands.command(name='tictactoe start', aliases= ['tictactoe challenge'], pass_context=True, no_pm=True) @checks.customPermsOrRole(send_messages=True) async def start_game(self, player2: discord.Member): """Starts a game of tictactoe with another player"""