forked from embee/woomy
Music debugs, cant reproduce locally
This commit is contained in:
parent
8575fb7906
commit
8de3c6ccad
1 changed files with 17 additions and 1 deletions
|
@ -189,13 +189,23 @@ exports.play = async function (client, message, query, playNext, ignoreQueue) {
|
||||||
guild.channel = message.channel
|
guild.channel = message.channel
|
||||||
}
|
}
|
||||||
|
|
||||||
|
console.log('[MUSIC DEBUG] joining vc');
|
||||||
|
|
||||||
const connection = await vc.join()
|
const connection = await vc.join()
|
||||||
|
|
||||||
|
console.log('[MUSIC DEBUG] joined vc');
|
||||||
|
|
||||||
const v = guild.queue[0]
|
const v = guild.queue[0]
|
||||||
|
|
||||||
|
console.log('[MUSIC DEBUG] got v');
|
||||||
|
|
||||||
try {
|
try {
|
||||||
guild.dispatcher = connection.play(await ytdl(exports.getLinkFromID(v.video.videoId), { highWaterMark: 1024 * 1024 * 32 }), { type: 'opus' })
|
guild.dispatcher = connection.play(await ytdl(exports.getLinkFromID(v.video.videoId), { highWaterMark: 1024 * 1024 * 32 }), { type: 'opus' })
|
||||||
|
|
||||||
|
console.log('[MUSIC DEBUG] got dispatcher')
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
|
console.error(err);
|
||||||
|
|
||||||
if (playNext && playNext === true) {
|
if (playNext && playNext === true) {
|
||||||
guild.queue.splice(1, 1)
|
guild.queue.splice(1, 1)
|
||||||
} else {
|
} else {
|
||||||
|
@ -206,14 +216,20 @@ exports.play = async function (client, message, query, playNext, ignoreQueue) {
|
||||||
return message.channel.send(`<:error:466995152976871434> An error has occured: \n\`${err}\``)
|
return message.channel.send(`<:error:466995152976871434> An error has occured: \n\`${err}\``)
|
||||||
// return message.channel.send('<:error:466995152976871434> YouTube have made changes to their site that break Woomy\'s music module. An announcement will be made in the development server when this issue is resolved.')
|
// return message.channel.send('<:error:466995152976871434> YouTube have made changes to their site that break Woomy\'s music module. An announcement will be made in the development server when this issue is resolved.')
|
||||||
}
|
}
|
||||||
|
console.log('[MUSIC DEBUG] setting volume');
|
||||||
guild.dispatcher.setVolume(0.25)
|
guild.dispatcher.setVolume(0.25)
|
||||||
|
console.log('[MUSIC DEBUG] set volume');
|
||||||
|
|
||||||
guild.channel.send('<:player:467216674622537748> Now playing: **' + v.video.title + '** `[' + exports.createTimestamp(v.video.lengthSeconds) + ']`')
|
guild.channel.send('<:player:467216674622537748> Now playing: **' + v.video.title + '** `[' + exports.createTimestamp(v.video.lengthSeconds) + ']`')
|
||||||
|
|
||||||
// play next in queue on end
|
// play next in queue on end
|
||||||
guild.dispatcher.on('error', console.error);
|
guild.dispatcher.on('error', (err) => {
|
||||||
|
console.error('[MUSIC ERROR] ' + String(err));
|
||||||
|
});
|
||||||
|
|
||||||
guild.dispatcher.once('finish', () => {
|
guild.dispatcher.once('finish', () => {
|
||||||
|
console.log('[MUSIC DEBUG] dispatcher finish');
|
||||||
|
|
||||||
guild.queue.shift()
|
guild.queue.shift()
|
||||||
guild.playing = false
|
guild.playing = false
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue