I'm trying to make something like that: when a person writes certain words, the bot responds with a GIF image. Here is my code
const hayday = ('hayday', 'hay day', 'хей дей', 'хейдей', 'хэй дэй', 'хэйдэй') client.on('message', msg => { if (msg.content.toLowerCase().includes(hayday)) { msg.channel.send('https://tenor.com/view/hayday-gif-20485973'); } }) When I send any of options on const hayday bot just ignore me What's wrong? I'm on discord.js 12