From 408ea415f2391172029898278247930927f07d1d Mon Sep 17 00:00:00 2001 From: nex Date: Fri, 31 Mar 2023 11:56:55 +0100 Subject: [PATCH] Increase minimum vote --- cogs/events.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cogs/events.py b/cogs/events.py index 8348456..afc4a8e 100644 --- a/cogs/events.py +++ b/cogs/events.py @@ -81,7 +81,7 @@ class Events(commands.Cog): if member.guild_permissions.manage_messages: mod_reactions += 1 reactions += 1 - if reactions >= 2 or mod_reactions >= 1: + if reactions >= 3 or mod_reactions >= 1: await message.delete(delay=0.1) @commands.Cog.listener()