我需要公会定义的“公会”,但出现以下错误
错误:(节点:8576)UnhandledPromiseRejectionWarning:ReferenceError:公会未定义
js
if(msg.content.startsWith (prefix + 'mp')) {
var text = msg.content.split(' ').slice(1).join(' ')
if(!text) return msg.reply('Veuillez spécifié votre message !')
msg.guild.send(text)
}
答案 0 :(得分:0)
您无法向公会发送消息,但可以 向公会频道发送消息。因此,除了使用msg.guild.send(text)
之外,您还可以使用其中一个
// Send a message to the channel where the user entered the command
msg.channel.send(text);
或使用
// Send a message to a specific Guild Channel
let channel = msg.guild.channels.find((channel) => channel.name === '<channel name here>');
channel.send(text);