No obtengo ningún error en el código, pero cuando escribo 'hola' mi bot dice '¡Hola mundo!' no escribe Podrías ayudar ?
const { Client, Intents } = require('discord.js'); const client = new Client({ intents: [Intents.FLAGS.GUILDS] }); client.on('ready', () => { console.log(`Logged in as ${client.user.tag}!`); }); client.on('messageCreate', (msg) => { if (msg.content === 'hello') { msg.reply('Hello World!'); } }); client.login('token')