From 6f64f62e2c387fa7e04859f5c847344c79f96adc Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Sun, 14 Feb 2021 22:42:44 -0500 Subject: [PATCH] Remove quality lowest from music --- commands/music/play.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/music/play.js b/commands/music/play.js index 11b9d11b..2d02794a 100644 --- a/commands/music/play.js +++ b/commands/music/play.js @@ -54,7 +54,7 @@ module.exports = class PlayCommand extends Command { }); const verification = await verify(msg.channel, msg.author); if (!verification) return msg.say('Aborting playback.'); - const dispatcher = connection.play(ytdl(result, { filter: 'audioonly', quality: 'lowest' })); + const dispatcher = connection.play(ytdl(result, { filter: 'audioonly' })); this.client.dispatchers.set(msg.guild.id, dispatcher); dispatcher.once('finish', () => this.client.dispatchers.delete(msg.guild.id)); dispatcher.once('error', () => this.client.dispatchers.delete(msg.guild.id));