From b067a6ca07d8cca5127ad3b8296805b44ebeb4fb Mon Sep 17 00:00:00 2001 From: c0de Date: Thu, 10 Nov 2022 22:43:49 -0600 Subject: [PATCH] Use the new game manager --- 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 a2ae4b5..06fecde 100644 --- a/GhostBallBot/discord_client/client.py +++ b/GhostBallBot/discord_client/client.py @@ -18,7 +18,7 @@ import discord # Import game functions sys.path.append("..") -from game.game import GameManager +from game.manager import GameManager class GhostBallClient(discord.Client):