diff --git a/src/cogs/quote_quota.py b/src/cogs/quote_quota.py index b0e252b..d7d9208 100644 --- a/src/cogs/quote_quota.py +++ b/src/cogs/quote_quota.py @@ -274,7 +274,10 @@ class QuoteQuota(commands.Cog): color=discord.Color.blurple(), timestamp=discord.utils.utcnow() ) - messages: list[discord.Message] = await channel.history(after=discord.Object(1228516325681532928)).flatten() + messages: list[discord.Message] = await channel.history( + limit=None, + after=discord.Object(1228516325681532928) + ).flatten() trump_stats = await self._process_trump_truths(messages) tate_stats = await self._process_tate_truths(messages)