Disable help command for non-slash commands, close #44
This commit is contained in:
parent
adf33171d2
commit
e25b58440b
1 changed files with 3 additions and 1 deletions
|
@ -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"
|
||||||
|
|
Loading…
Add table
Reference in a new issue