Change various timeouts to 5 minutes instead of 1

This commit is contained in:
Ske
2018-09-07 23:21:12 +02:00
parent a9a9fb018e
commit b4bc1f1263
4 changed files with 5 additions and 5 deletions

View File

@@ -44,7 +44,7 @@ async def import_tupperware(ctx: CommandContext):
tupperware_page_embeds = []
tw_msg: discord.Message = await ctx.client.wait_for_message(channel=ctx.message.channel, timeout=60.0,
tw_msg: discord.Message = await ctx.client.wait_for_message(channel=ctx.message.channel, timeout=60.0 * 5,
check=ensure_account)
if not tw_msg:
return CommandError("Tupperware import timed out.")