Почему это дает мне эту ошибку? Как я могу определить эмодзи? Он должен просто проверить, была ли реакция с этим смайликом.
.then(function (message, reaction) {
message.react("?")
message.react("?")
const filter = (reaction, user) => {
return ['?', 'B'].includes(reaction.emoji.name) && user.id === message.author.id;
};
message.awaitReactions(filter, { max: 1 })
.then(collected => {
if (reaction.emoji.name === '?') {
message.channel.send('Ok, so you want to buy a server. Let me recommend you to visit <#699374469977735208>.');
}
else {
message.channel.send('Ok, so you need more informations first. Let me recommend you to visit <#699374469977735208>.');
}
})
});