diff options
| -rw-r--r-- | bot/exts/evergreen/tic_tac_toe.py | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/bot/exts/evergreen/tic_tac_toe.py b/bot/exts/evergreen/tic_tac_toe.py index 49571a34..ed4a6d52 100644 --- a/bot/exts/evergreen/tic_tac_toe.py +++ b/bot/exts/evergreen/tic_tac_toe.py @@ -187,7 +187,7 @@ class Game:      async def play(self) -> None:          """Start and handle game.""" -        await self.ctx.send("It's time for game! Let's begin.") +        await self.ctx.send("It's time for the game! Let's begin.")          board = await self.ctx.send(              embed=discord.Embed(description=self.format_board())          ) @@ -213,7 +213,7 @@ class Game:                  self.winner = self.current                  self.loser = self.next                  await self.ctx.send( -                    f":tada: {self.current} is won this game! :tada:" +                    f":tada: {self.current} won this game! :tada:"                  )                  await board.clear_reactions()                  break | 
