Change max reaction check to include those already past 20 (thanks @GlitterButts
This commit is contained in:
parent
ef54a046e0
commit
228a4844df
1 changed files with 1 additions and 1 deletions
|
@ -125,7 +125,7 @@ class AutoReactCog(commands.Cog):
|
||||||
f"Emote already added to {channel.mention} autoreactions."
|
f"Emote already added to {channel.mention} autoreactions."
|
||||||
)
|
)
|
||||||
return
|
return
|
||||||
if len(exists["reactions"]) == 20:
|
if len(exists["reactions"]) >= 20:
|
||||||
await ctx.send(
|
await ctx.send(
|
||||||
"Max number of reactions hit. Remove a different one to add this one"
|
"Max number of reactions hit. Remove a different one to add this one"
|
||||||
)
|
)
|
||||||
|
|
Loading…
Add table
Reference in a new issue