From 01b20b5ad046477ee43b3b6b125764357c8a0f80 Mon Sep 17 00:00:00 2001 From: Myned Date: Fri, 25 Feb 2022 00:26:42 -0600 Subject: [PATCH] WIP Help command --- commands/help.py | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 commands/help.py 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