From 1026c8188bd605648e8059af1b95d5ba3b7735cb Mon Sep 17 00:00:00 2001 From: Twentysix Date: Mon, 8 Feb 2016 01:09:14 +0100 Subject: [PATCH] Help fix Commands no longer show up in help if you don't have the permissions to use them --- red.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/red.py b/red.py index 83b047453..205dd0d7d 100644 --- a/red.py +++ b/red.py @@ -23,7 +23,7 @@ description = """ Red - A multifunction Discord bot by Twentysix """ -formatter = commands.HelpFormatter(show_check_failure=True) +formatter = commands.HelpFormatter(show_check_failure=False) bot = commands.Bot(command_prefix=["_"], formatter=formatter, description=description, pm_help=True)