我在将已经在语音通道中的用户转移到另一个语音通道时遇到麻烦

时间:2020-10-06 17:18:08

标签: discord.js

else if (command === 'move'){
        const member = client.users.cache.find(user => user.username == "0.o");
        const chan = client.channels.cache.get('761321016760336444');
        member.setVoiceChannel(chan);

错误 TypeError:member.setVoiceChannel不是函数 我以前看过setVoiceChannel,不知道为什么它对我不起作用

1 个答案:

答案 0 :(得分:0)

如果您使用discord.js v12,则应改为

member.voice.setChannel(chan);

您可以了解有关语音状态here

的更多信息