所以我一直在尝试制作一个机器人,根据其他人给出的反应给你积分,它似乎甚至没有尝试检测是否有自定义表情符号反应,我已经尝试将其更改为react.emoji.id、reaction.emoji.name 和各种其他东西,但它不起作用,有什么解决办法吗?
这是我的代码
bot.on('messageReactionAdd', async (reaction, user) => {
if(reaction.message.partial) await reaction.message.fetch();
if(reaction.partial) await reaction.message.fetch();
if(user.bot) return;
if(reaction.emoji.name == goodEmoji) { // it refuses to get past this stage, and doesn't do anything afterward.
console.log("test")
}
})
}