aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar ks129 <[email protected]>2021-01-16 20:37:11 +0200
committerGravatar GitHub <[email protected]>2021-01-16 20:37:11 +0200
commite2878ab625b7add00fe6aea3175107c9bd9e1cdb (patch)
treedbc926237ea0428158294214febd5b39b646591b
parentImprove "your turn" message (diff)
More grammar fixes
-rw-r--r--bot/exts/evergreen/tic_tac_toe.py4
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