From 4c6e5ea7f5720ecc3181a7a3987b99d0608f12f6 Mon Sep 17 00:00:00 2001 From: Zerio <43386412+ZerioDev@users.noreply.github.com> Date: Thu, 26 Nov 2020 22:17:26 +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/loop.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/loop.js b/commands/loop.js index 8b0d22b..e0f0bac 100644 --- a/commands/loop.js +++ b/commands/loop.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 !`); const repeatMode = client.player.getQueue(message).repeatMode;