diff --git a/src/main.py b/src/main.py index 8543f9a..31322be 100644 --- a/src/main.py +++ b/src/main.py @@ -54,7 +54,8 @@ async def on_command_error(ctx, error): """Triggered when a command enconter an error""" if isinstance(error, commands.errors.CommandNotFound): # si commande inconnu if ctx.message: # si pas une commande slash - await addReaction(ctx.message, 1) # ajout réaction + if not ctx.invoked_with.startswith(f"{customPrefix}"): + await addReaction(ctx.message, 1) # ajout réaction return else: raise error