gpt4 book ai didi

Discord.js 13 channel.join 不是一个函数

转载 作者:行者123 更新时间:2023-12-04 16:24:04 24 4
gpt4 key购买 nike

我最近安装了 Discord.js 13.1.0 并且我的音乐命令失败了,显然是因为 channel.join();不是一个函数,虽然我已经在 12.5.3 上使用了几个月......
有人知道解决这个问题吗?
我的加入命令的某些部分:

const { channel } = message.member.voice;
const voiceChannel = message.member.voice.channel;

await channel.join();
它导致错误。

最佳答案

Discord.js 不再支持语音。您需要使用他们制作的其他包( @discordjs/voice )。您可以导入 joinVoiceChannel从那里。

//discord.js and client declaration
const { joinVoiceChannel } = require('@discordjs/voice');
client.on('messageCreate', message => {
if(message.content === '!join') {
joinVoiceChannel({
channelId: message.member.voice.channel.id,
guildId: message.guild.id,
adapterCreator: message.guild.voiceAdapterCreator
})
}
})

关于Discord.js 13 channel.join 不是一个函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/68784950/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com