From d21389307e62fcf54c4c8be9c5666e682406b208 Mon Sep 17 00:00:00 2001 From: Abheek Dhawan Date: Fri, 2 Apr 2021 15:38:52 -0500 Subject: [PATCH] Use numEmoji instead of numEmoji-1 --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index caac90b..00b3dee 100644 --- a/index.js +++ b/index.js @@ -361,7 +361,7 @@ client.on('messageReactionAdd', (messageReaction, user) => { const channelCreateEmbed = new Discord.MessageEmbed() .setTitle("Reaction Added") .addField("Message", messageContent) - .addField("Reactions", `${userTag} reacted with ${emoji}, along with ${numEmoji - 1} other people in #${messageReaction.message.channel.name}.`) + .addField("Reactions", `${userTag} reacted with ${emoji}, along with ${numEmoji} other people in #${messageReaction.message.channel.name}.`) .setFooter("Emoji ID: " + messageReaction.emoji.id) .setTimestamp() .setColor('00aaff');