So I was making this media channel where you could send media, and reactions would pop up, from really happy about it to really sad/angry about it. Here's my code:
client.on('message', message => {
if (message.channel.name === "😂media") {
message.react('🤣')
.then(() => {
message.react('😂')
});{
};
}
if (message.channel.name === "😂media") {
message.react('🙂')
.then(() => {
message.react('😐')
});{
};
}
if (message.channel.name === "😂media") {
message.react('🤩')
.then(() => {
message.react('😢')
});{
};
}
if (message.channel.name === "😂media") {
message.react('😭')
.then(() => {
message.react('😢')
});{
};
}
});
Can someone possibly tell me what I am doing wrong? Thanks.
From https://stackoverflow.com/users/13685706/toasty Toasty
The correction was to change client.on('message', to client.on('messageCreate',