1
0
Fork 0
mirror of https://github.com/myned/modufur.git synced 2024-11-01 13:02:38 +00:00

Add back ignoring of command errors

This commit is contained in:
Myned 2019-02-19 23:09:32 -05:00
parent 44dca56fd0
commit 073127c789

View file

@ -153,6 +153,8 @@ async def on_command_error(ctx, error):
with suppress(err.NotFound):
if isinstance(error, err.NotFound):
print('NOT FOUND')
elif isinstance(error, errext.CommandInvokeError):
print(f'ERROR : {error}')
elif isinstance(error, err.Forbidden):
pass
elif isinstance(error, errext.CommandOnCooldown):