Change max reaction check to include those already past 20 (thanks @GlitterButts

This commit is contained in:
Zeva Rose 2021-07-01 18:07:06 -06:00
parent ef54a046e0
commit 228a4844df

View file

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