diff --git a/commands/nowplaying.js b/commands/nowplaying.js index 36991c8..eeb3a63 100644 --- a/commands/nowplaying.js +++ b/commands/nowplaying.js @@ -15,7 +15,6 @@ module.exports = { const embed = new Discord.MessageEmbed() .setTitle("__Now playing__") .setDescription(`**Now playing:** ${radio.url}\n\`${client.funcs.msToTime(completed, "hh:mm:ss")}\``) - .setFooter(`Queued by ${radio.songs[0].author.tag}`) .setURL(radio.songs[0].url) .setThumbnail(thumbnail._rejectionHandler0) .setColor(client.config.embedColor) diff --git a/commands/pause.js b/commands/pause.js deleted file mode 100644 index 5b8edb9..0000000 --- a/commands/pause.js +++ /dev/null @@ -1,18 +0,0 @@ -module.exports = { - name: 'pause', - alias: 'none', - usage: '', - description: 'Pause the currently playing music.', - onlyDev: false, - permission: 'MANAGE_MESSAGES', - category: 'music', - execute(msg, args, client, Discord, prefix, command) { - const radio = client.radio.get(msg.guild.id); - if (client.funcs.check(client, msg, command)) { - if (radio.paused) return msg.channel.send('<:redx:674263474704220182> The music is already paused!'); - radio.paused = true; - radio.connection.dispatcher.pause(true); - return msg.channel.send('<:pause:674685548610322462> Paused the music!'); - } - } -}; diff --git a/commands/resume.js b/commands/resume.js deleted file mode 100644 index 512a2c2..0000000 --- a/commands/resume.js +++ /dev/null @@ -1,18 +0,0 @@ -module.exports = { - name: 'resume', - alias: 'none', - usage: '', - description: 'Resume the paused music.', - onlyDev: false, - permission: 'MANAGE_MESSAGES', - category: 'music', - execute(msg, args, client, Discord, prefix, command) { - const radio = client.radio.get(msg.guild.id); - if (client.funcs.check(client, msg, command)) { - if (!radio.paused) return msg.channel.send('<:redx:674263474704220182> The music in not paused!'); - radio.paused = false; - radio.connection.dispatcher.resume(true); - return msg.channel.send('<:resume:674685585478254603> Resumed the music!'); - } - } -};