1
0
mirror of https://github.com/musix-org/musix-oss synced 2024-09-20 07:41:56 +00:00
musix-oss/commands/settings/announcesongs.js
MatteZ02 a64f9d2325 Update 3.0.3
All messages reworked.
2020-03-12 13:56:31 +02:00

12 lines
491 B
JavaScript

module.exports = {
name: 'announcesongs',
async execute(msg, args, client, Discord, prefix) {
if (client.global.db.guilds[msg.guild.id].startPlaying) {
client.global.db.guilds[msg.guild.id].startPlaying = false;
return msg.channel.send(client.messages.announceSongsFalse);
} else {
client.global.db.guilds[msg.guild.id].startPlaying = true;
return msg.channel.send(client.messages.announceSongsTrue);
}
}
};