diff --git a/cogs/football.py b/cogs/football.py index dc27334..4ad793e 100644 --- a/cogs/football.py +++ b/cogs/football.py @@ -11,7 +11,7 @@ class Football(commands.Cog): # Don't allow any commands to work when locked def cog_check(self, ctx): - return checks.isMe(ctx) and not self.client.locked + return not self.client.locked @commands.group(name="Jpl", case_insensitive=True, invoke_without_command=True) @commands.check(checks.allowedChannels) @@ -37,6 +37,5 @@ class Football(commands.Cog): await ctx.send(getTable()) - def setup(client): client.add_cog(Football(client))