From 84732a24fae4395023a70e0707393f1511714a16 Mon Sep 17 00:00:00 2001 From: Michael H Date: Mon, 28 May 2018 01:27:45 -0400 Subject: [PATCH] [V3] Drop verbose output on check failure (#1725) --- redbot/core/events.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/redbot/core/events.py b/redbot/core/events.py index 9ebd59d8b..15eb3ff6d 100644 --- a/redbot/core/events.py +++ b/redbot/core/events.py @@ -228,7 +228,7 @@ def init_events(bot, cli_flags): term += " ".join(ctx.args[1:]) await ctx.maybe_send_embed(fuzzy_command_search(ctx, ctx.invoked_with)) elif isinstance(error, commands.CheckFailure): - await ctx.send("⛔ You are not authorized to issue that command.") + pass elif isinstance(error, commands.NoPrivateMessage): await ctx.send("That command is not available in DMs.") elif isinstance(error, commands.CommandOnCooldown):