From ca82cb181bdbfb37251e09a68350389d50e1b2ca Mon Sep 17 00:00:00 2001 From: SeaswimmerTheFsh Date: Fri, 8 Sep 2023 16:13:10 -0400 Subject: [PATCH] fix(forums): fixed a single command being marked as a group command --- forums/forums.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/forums/forums.py b/forums/forums.py index eb590e9..949280d 100644 --- a/forums/forums.py +++ b/forums/forums.py @@ -95,7 +95,7 @@ class Forums(commands.Cog): async def resolvedset(self, ctx: commands.Context): """Manages the configuration for the [p]resolved command.""" - @resolvedset.group(name='show', invoke_without_command=True, aliases=['settings']) + @resolvedset.command(name='show', aliases=['settings']) async def resolvedset_show(self, ctx: commands.Context): """Shows the current cog configuration.""" channel_id = await self.config.guild(ctx.guild).forum_channel()