diff --git a/commands/help.py b/commands/help.py new file mode 100644 index 0000000..c9fc595 --- /dev/null +++ b/commands/help.py @@ -0,0 +1,18 @@ +import lightbulb + + +plugin = lightbulb.Plugin("help") + + +class Help(lightbulb.BaseHelpCommand): + pass + + +def load(bot): + bot.d.old_help_command = bot.help_command + bot.help_command = Help(bot) + + +def unload(bot): + bot.help_command = bot.d.old_help_command + del bot.d.old_help_command