mirror of
https://github.com/myned/modufur.git
synced 2024-11-01 21:02:38 +00:00
19 lines
295 B
Python
19 lines
295 B
Python
|
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
|