let channel = bot.channels.cache.get(config.STUDIEHOKr)
channel.join().then(connection =>{
const dispatcher = connection.play(ytdl('https://www.youtube.com/watch?v=5zXB8ibh5yk', { filter: 'audioonly' }));
dispatcher.on("end", end => {
channel.leave();
console.log('Playing is finished!');
});
}).catch(err => console.log(err));
这是我来自正在播放歌曲的 Discord 机器人的代码。我的机器人在 Heroku 上运行。它已经工作了一段时间,但今天它停止工作了。机器人仍然加入频道,但不播放任何声音。我的日志中没有收到任何错误。有人可以帮我找出问题所在吗?
宝慕林4294392
相关分类