From def27541d4f67fe46f166018a7809c5a14e74828 Mon Sep 17 00:00:00 2001 From: Jiralite <33201955+Jiralite@users.noreply.github.com> Date: Fri, 25 Feb 2022 14:45:19 +0000 Subject: [PATCH] feat: backport #7378 --- src/structures/MessageReaction.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/structures/MessageReaction.js b/src/structures/MessageReaction.js index 8a294be09f82..60e0189e876d 100644 --- a/src/structures/MessageReaction.js +++ b/src/structures/MessageReaction.js @@ -114,7 +114,7 @@ class MessageReaction { if (this.partial) return; this.users.cache.set(user.id, user); if (!this.me || user.id !== this.message.client.user.id || this.count === 0) this.count++; - this.me ??= user.id === this.message.client.user.id; + this.me ||= user.id === this.message.client.user.id; } _remove(user) {