From a4b2f11f78c48ab874800d9f5e2dbe66bb676048 Mon Sep 17 00:00:00 2001 From: Zevaryx Date: Fri, 22 Oct 2021 19:52:47 -0600 Subject: [PATCH] Change max twitter accounts to 12 from 5 --- jarvis/cogs/twitter.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/jarvis/cogs/twitter.py b/jarvis/cogs/twitter.py index 8751a08..7877e6a 100644 --- a/jarvis/cogs/twitter.py +++ b/jarvis/cogs/twitter.py @@ -82,8 +82,8 @@ class TwitterCog(commands.Cog): return count = Twitter.objects(guild=ctx.guild.id).count() - if count >= 5: - await ctx.send("Cannot follow more than 5 Twitter accounts", hidden=True) + if count >= 12: + await ctx.send("Cannot follow more than 12 Twitter accounts", hidden=True) return exists = Twitter.objects(handle=handle, guild=ctx.guild.id)