Disable help command for non-slash commands, close #44

This commit is contained in:
Zeva Rose 2021-07-19 13:40:43 -06:00
parent adf33171d2
commit e25b58440b

View file

@ -29,7 +29,9 @@ invites = re.compile(
) )
jarvis = commands.Bot(command_prefix=utils.get_prefix, intents=intents) jarvis = commands.Bot(
command_prefix=utils.get_prefix, intents=intents, help_command=None
)
slash = SlashCommand(jarvis, sync_commands=True, sync_on_cog_reload=True) slash = SlashCommand(jarvis, sync_commands=True, sync_on_cog_reload=True)
jarvis_self = Process() jarvis_self = Process()
__version__ = "1.0.0" __version__ = "1.0.0"