From 9a39399936c0e7750326462b2d0a9ac4f92c3a43 Mon Sep 17 00:00:00 2001 From: c0de Date: Wed, 26 Oct 2022 23:37:23 -0500 Subject: [PATCH] Don't need to pass game manager instance --- 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 cfb3f1b..5d3965d 100644 --- a/GhostBallBot/discord_client/client.py +++ b/GhostBallBot/discord_client/client.py @@ -56,4 +56,4 @@ class GhostBallClient(discord.Client): for command, function in self.game.commands: if firstword == command: self.game.message = message - await function(self.game) + await function()