From f67d25481cecbee7d7c8904e2856ff131b56ebee Mon Sep 17 00:00:00 2001 From: Luke Robles <98352913+lrobles-iterable@users.noreply.github.com> Date: Sun, 18 Sep 2022 20:37:09 -0700 Subject: [PATCH] bump messages to 50k --- app/cogs/markov.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/cogs/markov.py b/app/cogs/markov.py index 0b8da979..ceb0edcb 100644 --- a/app/cogs/markov.py +++ b/app/cogs/markov.py @@ -13,7 +13,7 @@ class Markov(commands.Cog): # Get messages from passed in user authors_mesages = [] - for message in await ctx.history(limit=10000).flatten(): + for message in await ctx.history(limit=50000).flatten(): if message.author.id == user.id and "https" not in message.content: authors_mesages.append(message.content)