From 84e4975d27d34fb5224d1442732294566504c484 Mon Sep 17 00:00:00 2001 From: c0de Date: Tue, 25 Oct 2022 23:16:33 -0500 Subject: [PATCH] The game is GameManager now --- GhostBallBot/discord_client/client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GhostBallBot/discord_client/client.py b/GhostBallBot/discord_client/client.py index 5423744..cfb3f1b 100644 --- a/GhostBallBot/discord_client/client.py +++ b/GhostBallBot/discord_client/client.py @@ -31,7 +31,7 @@ class GhostBallClient(discord.Client): def __init__(self, *args, **kwargs): super().__init__(*args, **kwargs) - with game.Game() as self.game: + with game.GameManager() as self.game: self.game.discord = self async def on_ready(self):