bump messages to 50k

This commit is contained in:
Luke Robles 2022-09-18 20:37:09 -07:00
parent e2ad2ac5d9
commit f67d25481c

View File

@ -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)