diff --git a/jarvis/cogs/error.py b/jarvis/cogs/error.py index 582ba0b..615dda5 100644 --- a/jarvis/cogs/error.py +++ b/jarvis/cogs/error.py @@ -21,11 +21,13 @@ class ErrorHandlerCog(commands.Cog): if isinstance(error, commands.errors.MissingPermissions) or isinstance( error, commands.errors.CheckFailure ): - await ctx.send("I'm afraid I can't let you do that.") + await ctx.send("I'm afraid I can't let you do that.", hidden=True) elif isinstance(error, commands.errors.CommandNotFound): return else: - await ctx.send(f"Error processing command:\n```{error}```") + await ctx.send( + f"Error processing command:\n```{error}```", hidden=True + ) def setup(bot):