From 228a4844dff677c0c72e2bdd63e7eb3c4dd34cfb Mon Sep 17 00:00:00 2001 From: Zevaryx Date: Thu, 1 Jul 2021 18:07:06 -0600 Subject: [PATCH] Change max reaction check to include those already past 20 (thanks @GlitterButts --- jarvis/cogs/autoreact.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jarvis/cogs/autoreact.py b/jarvis/cogs/autoreact.py index 9533ce1..708e165 100644 --- a/jarvis/cogs/autoreact.py +++ b/jarvis/cogs/autoreact.py @@ -125,7 +125,7 @@ class AutoReactCog(commands.Cog): f"Emote already added to {channel.mention} autoreactions." ) return - if len(exists["reactions"]) == 20: + if len(exists["reactions"]) >= 20: await ctx.send( "Max number of reactions hit. Remove a different one to add this one" )