1
0
Fork 0
mirror of synced 2024-06-23 08:40:41 +12:00

Correctected the indentation error

This commit is contained in:
Phxntxm 2016-08-28 16:41:32 -05:00
parent 0e785ef9b0
commit 0214537e49

View file

@ -263,8 +263,7 @@ class TicTacToe:
# Print the board too just because
fmt += str(self.boards[ctx.message.server.id])
# We don't need to do anything weird with assigning x_player to something, it is already a member object, just use it
fmt += "I have decided at random, and {} is going to be x's this game. It is your turn first!\n"
"Use the {}tictactoe command, and a position, to choose where you want to play".format(x_player.display_name, ctx.prefix)
fmt += "I have decided at random, and {} is going to be x's this game. It is your turn first!\nUse the {}tictactoe command, and a position, to choose where you want to play".format(x_player.display_name, ctx.prefix)
await self.bot.say(fmt)
@tictactoe.command(name='delete', aliases=['stop', 'remove', 'end'], pass_context=True, no_pm=True)