Change max twitter accounts to 12 from 5
This commit is contained in:
parent
647740520d
commit
a4b2f11f78
1 changed files with 2 additions and 2 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Reference in a new issue