From f548be9b3fd40ba1aa4d5c0ce2b3af55c9bde6a0 Mon Sep 17 00:00:00 2001 From: sgoudham Date: Wed, 22 Jul 2020 01:36:11 +0100 Subject: [PATCH] Unhiding Cog --- cogs/modmail.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cogs/modmail.py b/cogs/modmail.py index 2c775a59..3f4337fd 100644 --- a/cogs/modmail.py +++ b/cogs/modmail.py @@ -144,14 +144,14 @@ def SendMsgToModMail(self, msg, author): # Set up the Cog -class Modmail(commands.Cog, command_attrs=dict(hidden=True)): +class Modmail(commands.Cog): """Set up modmail system!""" def __init__(self, bot): self.bot = bot self.anon = None - @commands.group(invoke_without_command=True) + @commands.group(invoke_without_command=True, hidden=True) async def modmail(self, ctx): pass