From e25b58440be4a1ad83267fe026685e842de63320 Mon Sep 17 00:00:00 2001 From: Zevaryx Date: Mon, 19 Jul 2021 13:40:43 -0600 Subject: [PATCH] Disable help command for non-slash commands, close #44 --- jarvis/__init__.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/jarvis/__init__.py b/jarvis/__init__.py index 0a401cb..3768bb0 100644 --- a/jarvis/__init__.py +++ b/jarvis/__init__.py @@ -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) jarvis_self = Process() __version__ = "1.0.0"