diff --git a/redbot/cogs/trivia/session.py b/redbot/cogs/trivia/session.py index 2494e809a..399645a29 100644 --- a/redbot/cogs/trivia/session.py +++ b/redbot/cogs/trivia/session.py @@ -208,7 +208,7 @@ class TriviaSession: ) except asyncio.TimeoutError: if time.time() - self._last_response >= timeout: - with contextlib.suppress(discord.HTTPException): + with contextlib.suppress(discord.NotFound, discord.Forbidden): await self.ctx.send(_("Guys...? Well, I guess I'll stop then.")) self.stop() return False