From fa5ba85d3c9da611c10412cc2ee75eeff3a434f9 Mon Sep 17 00:00:00 2001 From: ks129 <45097959+ks129@users.noreply.github.com> Date: Tue, 7 Apr 2020 14:18:33 +0300 Subject: (TicTacToe): Added new variable `games` to `TicTacToe` cog. --- bot/exts/evergreen/tic_tac_toe.py | 1 + 1 file changed, 1 insertion(+) (limited to 'bot') diff --git a/bot/exts/evergreen/tic_tac_toe.py b/bot/exts/evergreen/tic_tac_toe.py index 24021842..28f48e11 100644 --- a/bot/exts/evergreen/tic_tac_toe.py +++ b/bot/exts/evergreen/tic_tac_toe.py @@ -80,6 +80,7 @@ class TicTacToe(Cog): def __init__(self, bot: SeasonalBot): self.bot = bot + self.games: t.List[Game] = [] def setup(bot: SeasonalBot) -> None: -- cgit v1.2.3