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

View file

@ -241,7 +241,7 @@ class HelpCommand(commands.MinimalHelpCommand):
if commands: if commands:
self.paginator.add_line(f"**{heading}**") self.paginator.add_line(f"**{heading}**")
# TODO Make the Main Dynamic # 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)) self.paginator.add_line(", ".join(f"`{c.name}`" for c in commands))
else: else:
for c in commands: for c in commands:
@ -274,7 +274,7 @@ class HelpCommand(commands.MinimalHelpCommand):
else: else:
other_cmds[category] = commands 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(): for category, commands in other_cmds.items():
self.add_bot_commands_formatting(commands, category) self.add_bot_commands_formatting(commands, category)