From 82287c3e41438d97d89d9337d29df1b31c993311 Mon Sep 17 00:00:00 2001 From: Zerio <43386412+ZerioDev@users.noreply.github.com> Date: Thu, 26 Nov 2020 22:17:48 +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/np.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/np.js b/commands/np.js index 5fe032e..e100b99 100644 --- a/commands/np.js +++ b/commands/np.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 track = await client.player.nowPlaying(message); const filters = [];