From 1bab10e51bfe4c48534d29232d0769de2247735a Mon Sep 17 00:00:00 2001 From: Dany Date: Sat, 14 Sep 2024 11:49:39 +0200 Subject: [PATCH] remove commande nuke --- src/botMain.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/botMain.py b/src/botMain.py index 1aa577b..c204217 100644 --- a/src/botMain.py +++ b/src/botMain.py @@ -24,7 +24,7 @@ # Si une commande ne veut pas partir / est dupliqué dans la liste des commandes sur discord ajouter # `delete_unused_application_cmds=True` pour supprimer les commandes en cache -bot = Client(token=token_bot, intents=Intents.DEFAULT | Intents.GUILD_MEMBERS | Intents.GUILD_PRESENCES, send_command_tracebacks=False, delete_unused_application_cmds=True) +bot = Client(token=token_bot, intents=Intents.DEFAULT | Intents.GUILD_MEMBERS | Intents.GUILD_PRESENCES, send_command_tracebacks=False) # Extension pour gérer les erreurs avec https://sentry.io/ bot.load_extension('interactions.ext.sentry', dsn=str(os.getenv("SENTRY_DSN")))