Use a task instead of awaiting for delete delay (#3884)

This commit is contained in:
jack1142 2020-06-18 15:50:42 +02:00 committed by GitHub
parent a64c28aa44
commit 70c733e146
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -209,7 +209,7 @@ def init_events(bot, cli_flags):
if commands.Cog._get_overridden_method(ctx.cog.cog_command_error) is not None: if commands.Cog._get_overridden_method(ctx.cog.cog_command_error) is not None:
return return
if not isinstance(error, commands.CommandNotFound): if not isinstance(error, commands.CommandNotFound):
await bot._delete_delay(ctx) asyncio.create_task(bot._delete_delay(ctx))
if isinstance(error, commands.MissingRequiredArgument): if isinstance(error, commands.MissingRequiredArgument):
await ctx.send_help() await ctx.send_help()