下面是我目前拥有的功能,但出现错误,提示',' expected
。问题是我不确定如何解决它。
async function: play(bot, ops, data) {
data.dispatcher = await data.connection.play(ytdl(data.queue[0].url, {filter: 'audioonly'}));
data.dispatcher.guildID = data.guildID;
data.dispatcher.once('end', function(){
finish(bot, ops, this);
});
}
答案 0 :(得分:0)
您的代码中有两个错误(我认为):
async play(...) {...}
,
希望这会有所帮助:)