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)