2020-02-05 20:02:53 +00:00
|
|
|
module.exports = {
|
|
|
|
name: 'loopsong',
|
|
|
|
alias: 'loops',
|
2020-02-24 18:41:40 +00:00
|
|
|
usage: '',
|
2020-02-05 20:02:53 +00:00
|
|
|
description: 'loop the currently playing song.',
|
|
|
|
onlyDev: false,
|
|
|
|
permission: 'MANAGE_MESSAGES',
|
|
|
|
category: 'music',
|
|
|
|
async execute(msg, args, client, Discord, prefix, command) {
|
|
|
|
const serverQueue = client.queue.get(msg.guild.id);
|
|
|
|
if (client.funcs.check(client, msg, command)) {
|
|
|
|
if (!serverQueue.songLooping) {
|
|
|
|
serverQueue.songLooping = true;
|
|
|
|
msg.channel.send(`<:repeatsong:674685573419761716> Looping **${serverQueue.songs[0].title}** now!`);
|
|
|
|
} else {
|
|
|
|
serverQueue.songLooping = false;
|
|
|
|
msg.channel.send('<:repeatsong:674685573419761716> No longer looping the song!');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|