From 549af85e37a5ab93c503082c0aed0e43a4704dbd Mon Sep 17 00:00:00 2001 From: mangofeet Date: Wed, 15 Feb 2023 09:51:51 -0700 Subject: [PATCH] don't need the "me" check? --- src/bot.ts | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/bot.ts b/src/bot.ts index 03e46612..a4f30639 100644 --- a/src/bot.ts +++ b/src/bot.ts @@ -703,11 +703,7 @@ export class DiscordBot { const reaction = msg.reactions.resolve(storeReaction.Emoji) if (!reaction) { log.warn(`Could not find reaction for emoji ${storeReaction.Emoji}`) - return - } - if (!reaction.me) { - log.warn(`This client didn't react with ${storeReaction.Emoji}`) - return + continue } await reaction.users.remove() this.channelLock.release(msg.channel.id);