我目前正在尝试让机器人一旦加入语音通道就会震耳欲聋。我试过了
client.ws.voice.setSelfDeaf(true)我还被告知要使用
client.ws.send()但我不知道如何使用它。我有没有办法做这件事?
发布于 2020-04-28 00:55:35
client.ws.voice和client.ws.send()不是一回事。
您需要做的是在机器人加入语音通道时使用voice.setSelfDeaf(true)。
voiceChannel.join()
.then(connection => {
connection.voice.setSelfDeaf(true);
});https://stackoverflow.com/questions/61459698
复制相似问题