From 7a0d1e0e36548a44c3c057ba9f46132fe8e77380 Mon Sep 17 00:00:00 2001 From: Myned Date: Tue, 22 Feb 2022 22:16:02 -0600 Subject: [PATCH] Add default help command --- run.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/run.py b/run.py index 9e705be..68db200 100644 --- a/run.py +++ b/run.py @@ -14,7 +14,11 @@ if os.name != "nt": uvloop.install() -bot = lightbulb.BotApp(token=c.config["token"], default_enabled_guilds=c.config["guilds"]) +bot = lightbulb.BotApp( + token=c.config["token"], + default_enabled_guilds=c.config["guilds"], + help_slash_command=True, +) @bot.listen(lightbulb.CommandErrorEvent)