From 0a0c43321b58588daa54c1faad00b5aa64dd058f Mon Sep 17 00:00:00 2001 From: Benjamin Mintz Date: Wed, 8 May 2019 01:15:15 +0000 Subject: [PATCH] [commands] MinimalHelpCommand: add cog description --- discord/ext/commands/help.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/discord/ext/commands/help.py b/discord/ext/commands/help.py index 7a3b7e23f..332f4affe 100644 --- a/discord/ext/commands/help.py +++ b/discord/ext/commands/help.py @@ -1222,6 +1222,9 @@ class MinimalHelpCommand(HelpCommand): if note: self.paginator.add_line(note, empty=True) + if cog.description: + self.paginator.add_line(cog.description, empty=True) + filtered = await self.filter_commands(cog.get_commands(), sort=self.sort_commands) if filtered: self.paginator.add_line('**%s %s**' % (cog.qualified_name, self.commands_heading))