From 387d9706d2361045ae5b211f6073818c34fdc766 Mon Sep 17 00:00:00 2001 From: Zerio <43386412+ZerioDev@users.noreply.github.com> Date: Thu, 26 Nov 2020 22:16:24 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=9D=20Correction?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- commands/clear-queue.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/clear-queue.js b/commands/clear-queue.js index f1d3b6c..1dea113 100644 --- a/commands/clear-queue.js +++ b/commands/clear-queue.js @@ -2,7 +2,7 @@ exports.run = async (client, message) => { if (!message.member.voice.channel) return message.channel.send(`${client.emotes.error} - You're not in a voice channel !`); - if (!client.player.getQueue(message)) return message.channel.send(`${client.emotes.error} - No songs currently playing !`); + if (!client.player.getQueue(message)) return message.channel.send(`${client.emotes.error} - No music currently playing !`); client.player.clearQueue(message);