diff --git a/commands/help.py b/commands/help.py deleted file mode 100644 index c9fc595..0000000 --- a/commands/help.py +++ /dev/null @@ -1,18 +0,0 @@ -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