diff options
Diffstat (limited to 'bot/exts/evergreen')
| -rw-r--r-- | bot/exts/evergreen/tic_tac_toe.py | 6 | 
1 files changed, 6 insertions, 0 deletions
| diff --git a/bot/exts/evergreen/tic_tac_toe.py b/bot/exts/evergreen/tic_tac_toe.py index ea503e83..260c8c2f 100644 --- a/bot/exts/evergreen/tic_tac_toe.py +++ b/bot/exts/evergreen/tic_tac_toe.py @@ -91,6 +91,12 @@ class Game:              msg += "\n"          return await self.ctx.send(msg) +    async def play(self) -> None: +        """Start and handle game.""" +        await self.ctx.send("It's time for game! Let's begin.") +        board = await self.send_board() +        await self.add_reactions(board) +  def is_channel_free() -> t.Callable:      """Check is channel where command will be invoked free.""" | 
