Disable send command tracebacks

This commit is contained in:
Zeva Rose 2022-04-18 16:38:04 -06:00
parent f106178673
commit 90dfb77d11

View file

@ -28,7 +28,10 @@ intents = Intents.DEFAULT | Intents.MESSAGES | Intents.GUILD_MEMBERS | Intents.G
restart_ctx = None
jarvis = Jarvis(
intents=intents, sync_interactions=jconfig.sync, delete_unused_application_cmds=True
intents=intents,
sync_interactions=jconfig.sync,
delete_unused_application_cmds=True,
send_command_tracebacks=False,
)