I need help with my Discord bot that should redirect someone to a different channel when they mention certain trigger word(s). I feel like there might be a missing line or two of code that I need to add to make it work properly.
bot.on("message", message => {
if(message.content.toLowerCase().includes('lists')) {
message.channel.send(`If you're looking for list information, please check out #bt-updates!`);
}
});