aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar ks129 <[email protected]>2021-01-16 20:35:28 +0200
committerGravatar GitHub <[email protected]>2021-01-16 20:35:28 +0200
commit6a3366a03de682f6d00aef9bfe33d7c8a10e6ba7 (patch)
treebe8e69b00305c09a8a502f66480f657921cf9bb0
parentAdd missing a article (diff)
Improve "your turn" message
-rw-r--r--bot/exts/evergreen/tic_tac_toe.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/evergreen/tic_tac_toe.py b/bot/exts/evergreen/tic_tac_toe.py
index 4b76f94d..49571a34 100644
--- a/bot/exts/evergreen/tic_tac_toe.py
+++ b/bot/exts/evergreen/tic_tac_toe.py
@@ -195,7 +195,7 @@ class Game:
for _ in range(9):
if isinstance(self.current, Player):
- announce = await self.ctx.send(f"{self.current.user.mention}, your turn! React to emoji to mark field.")
+ announce = await self.ctx.send(f"{self.current.user.mention}, it's your turn! React with an emoji to take your go.")
timeout, pos = await self.current.get_move(self.board, board)
if isinstance(self.current, Player):
await announce.delete()