From 7a073b12e28d95fb37624841ba0b819995bf51a4 Mon Sep 17 00:00:00 2001 From: sgoudham Date: Mon, 20 Jul 2020 20:36:43 +0100 Subject: [PATCH] Typo in help command --- cogs/help/help.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cogs/help/help.py b/cogs/help/help.py index 4960b85c..ca06a0fc 100644 --- a/cogs/help/help.py +++ b/cogs/help/help.py @@ -159,7 +159,7 @@ def help_menu(self, guild_icon): modmail.set_thumbnail(url=guild_icon) # Setting up the fields in a separate array - modmail_fields = [(f"**{self.ctx.prefix}mmsetup setup modmail ``**", + modmail_fields = [(f"**{self.ctx.prefix}mmsetup set modmail ``**", "Sets up the modmail system in the guild," "channelID given will be the channel that the user will interact with", False), (f"**{self.ctx.prefix}mmsetup update modmail ``**", @@ -300,7 +300,7 @@ class HelpMenu(menus.Menu): # Set up the cog -class ReactionMenu(commands.Cog): +class CustomHelp(commands.Cog): def __init__(self, bot): self.bot = bot self.bot.remove_command("help") @@ -318,4 +318,4 @@ class ReactionMenu(commands.Cog): def setup(bot): - bot.add_cog(ReactionMenu(bot)) + bot.add_cog(CustomHelp(bot))