diff --git a/Discord/cogs/adventure.py b/Discord/cogs/adventure.py index 607c261742..d392239685 100644 --- a/Discord/cogs/adventure.py +++ b/Discord/cogs/adventure.py @@ -327,7 +327,7 @@ async def woodcutting_active(self, ctx, wood_type): m.author == ctx.author and m.content.lower() in ('y', "yes", 'n', "no") ) - except asyncio.TimeoutError: + except TimeoutError: return finally: await self.bot.attempt_delete_message(ask_message) @@ -356,7 +356,7 @@ async def woodcutting_active(self, ctx, wood_type): check = lambda m: m.author == ctx.author and m.content == prompt ) - except asyncio.TimeoutError: + except TimeoutError: return await ctx.embed_reply( f":stop_sign: You have stopped actively chopping {wood_type}" )