From 0d46cbf969a0a3141586482fb61c808d13420d15 Mon Sep 17 00:00:00 2001 From: SeaswimmerTheFsh Date: Fri, 8 Sep 2023 13:58:46 -0400 Subject: [PATCH] fix(forums): added invoke_without_command to resolvedset show --- forums/forums.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/forums/forums.py b/forums/forums.py index af98220..6363cbd 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', aliases=['settings']) + @resolvedset.group(name='show', invoke_without_command=True, 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()