diff options
author | 2021-01-16 20:35:28 +0200 | |
---|---|---|
committer | 2021-01-16 20:35:28 +0200 | |
commit | 6a3366a03de682f6d00aef9bfe33d7c8a10e6ba7 (patch) | |
tree | be8e69b00305c09a8a502f66480f657921cf9bb0 | |
parent | Add missing a article (diff) |
Improve "your turn" message
-rw-r--r-- | bot/exts/evergreen/tic_tac_toe.py | 2 |
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() |