From 04ec3b9955e00b3be7109e4892aed2196f7298dd Mon Sep 17 00:00:00 2001 From: Myned Date: Sat, 21 Oct 2017 16:40:36 -0400 Subject: [PATCH] Fixed commands not showing in help if checks fail --- src/main/run.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/main/run.py b/src/main/run.py index f95296b..e86f690 100644 --- a/src/main/run.py +++ b/src/main/run.py @@ -26,7 +26,8 @@ def get_prefix(bot, message): return u.config['prefix'] -bot = commands.Bot(command_prefix=get_prefix, description='Experimental miscellaneous bot') +bot = commands.Bot(command_prefix=get_prefix, formatter=commands.HelpFormatter( + show_check_failure=True), description='Experimental miscellaneous bot') # Send and print ready message to #testing and console after logon