diff options
-rw-r--r-- | bot/exts/evergreen/fun.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/evergreen/fun.py b/bot/exts/evergreen/fun.py index 4fc06b49..090714aa 100644 --- a/bot/exts/evergreen/fun.py +++ b/bot/exts/evergreen/fun.py @@ -99,7 +99,7 @@ class Fun(Cog): See `decrpyt`, `encrypt`, and `info` subcommands. """ if ctx.invoked_subcommand is None: - await self.bot.get_cog("Help").new_help(ctx, "caesarcipher") + await ctx.invoke(self.bot.get_command("help"), "caesarcipher") @caesarcipher_group.command(name="info") async def caesarcipher_info(self, ctx: Context) -> None: |