diff --git a/src/structures/MessageReaction.js b/src/structures/MessageReaction.js index 1a20aa2e0cbd..8a294be09f82 100644 --- a/src/structures/MessageReaction.js +++ b/src/structures/MessageReaction.js @@ -34,7 +34,7 @@ class MessageReaction { * A manager of the users that have given this reaction * @type {ReactionUserManager} */ - this.users = new ReactionUserManager(this); + this.users = new ReactionUserManager(this, this.me ? [client.user] : []); this._emoji = new ReactionEmoji(this, data.emoji);