Also dropped bot list bc lol

This commit is contained in:
Adriene Hutchins 2020-03-02 01:22:24 -05:00
parent 21bc4381e7
commit a90db12487
1 changed files with 2 additions and 2 deletions

View File

@ -241,7 +241,7 @@ class HelpCommand(commands.MinimalHelpCommand):
if commands:
self.paginator.add_line(f"**{heading}**")
# TODO Make the Main Dynamic
if heading == 'Core/Bot List':
if heading == 'Core':
self.paginator.add_line(", ".join(f"`{c.name}`" for c in commands))
else:
for c in commands:
@ -274,7 +274,7 @@ class HelpCommand(commands.MinimalHelpCommand):
else:
other_cmds[category] = commands
self.add_bot_commands_formatting(main_cmds, 'Core/Bot List')
self.add_bot_commands_formatting(main_cmds, 'Core')
for category, commands in other_cmds.items():
self.add_bot_commands_formatting(commands, category)