mirror of
https://github.com/myned/modufur.git
synced 2024-11-01 21:02:38 +00:00
Fixed commands not showing in help if checks fail
This commit is contained in:
parent
4528c6fe10
commit
04ec3b9955
1 changed files with 2 additions and 1 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue