diff --git a/redbot/core/help_formatter.py b/redbot/core/help_formatter.py index b8e4bf031..c523d6d81 100644 --- a/redbot/core/help_formatter.py +++ b/redbot/core/help_formatter.py @@ -269,6 +269,13 @@ class Help(formatter.HelpFormatter): color=color) return embed + def cmd_has_no_subcommands(self, ctx, cmd, color=None): + embed = self.simple_embed( + ctx, + title=ctx.bot.command_has_no_subcommands.format(cmd), + color=color + ) + return embed @commands.command() async def help(ctx, *cmds: str):