1
0
Fork 0
mirror of synced 2024-05-20 20:42:27 +12:00

Put a newline in before the tictactoe board

This commit is contained in:
Phxntxm 2017-05-01 17:45:22 -05:00
parent 6aab8267f9
commit 3754fbc565

View file

@ -229,7 +229,7 @@ class TicTacToe:
# Create the board and return who has been decided to go first
x_player = self.create(ctx.message.guild.id, player1, player2)
fmt = "A tictactoe game has just started between {} and {}".format(player1.display_name, player2.display_name)
fmt = "A tictactoe game has just started between {} and {}\n".format(player1.display_name, player2.display_name)
# Print the board too just because
fmt += str(self.boards[ctx.message.guild.id])