{update} Discord机器人仅发送消息,但未发送图片

时间:2020-07-22 04:00:25

标签: discord.js

我的不和谐机器人陷入了删除和发送消息的循环中,

我的代码:

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');

1 个答案:

答案 0 :(得分:2)

您需要忽略漫游器发送的消息。


application/json

client.on("message", message => {
    if (message.author.bot) return false

    // your code goes here
});