mirror of
https://github.com/musix-org/musix-oss
synced 2025-07-07 01:20:48 +00:00
removed src
This commit is contained in:
@ -1,21 +0,0 @@
|
||||
module.exports = {
|
||||
name: 'loopsong',
|
||||
alias: 'loops',
|
||||
usage: 'loopsong',
|
||||
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!');
|
||||
}
|
||||
}
|
||||
}
|
||||
};
|
Reference in New Issue
Block a user