我的不和谐机器人陷入了删除和发送消息的循环中,
我的代码:
const Discord = require('discord.js');
const client = new Discord.Client();
client.on('message', msg => {
if (msg.channel.id === 'channel id') {
msg.delete();
msg.channel.send(msg.content);
}
});
client.login('token');
答案 0 :(得分:2)
您需要忽略漫游器发送的消息。
application/json
client.on("message", message => {
if (message.author.bot) return false
// your code goes here
});