diff --git a/EnsoBot.py b/EnsoBot.py index bc5364f8..883ef33d 100644 --- a/EnsoBot.py +++ b/EnsoBot.py @@ -17,8 +17,6 @@ client = commands.Bot( # Create a new bot command_prefix="~", # Set the prefix description='Ensō~Chan!', # Set a description for the bot owner_id=154840866496839680) # Your unique User ID -# Removes the default help command -client.remove_command('help') # Calls the cogs from the settings.py file and loads them if __name__ == '__main__': diff --git a/cogs/HelpMenu.py b/cogs/HelpMenu.py index ca913b06..07371f64 100644 --- a/cogs/HelpMenu.py +++ b/cogs/HelpMenu.py @@ -274,6 +274,8 @@ class HelpMenu(menus.Menu): class ReactionMenu(commands.Cog): def __init__(self, bot): self.bot = bot + # Remove default help command + self.bot.remove_command("help") # ~help command that returns a menu for help commands controlled by reactions @command(name="help", aliases=["Help"])