diff --git a/commands/settings/songSelection.js b/commands/settings/songSelection.js index 0e22ce5c..648b28ab 100644 --- a/commands/settings/songSelection.js +++ b/commands/settings/songSelection.js @@ -1,11 +1,11 @@ module.exports = { name: 'songselection', async execute(message, args, client, Discord, prefix) { - if (!client.global.db.guilds[message.guild.id].dj) { + if (!client.global.db.guilds[message.guild.id].songSelection) { message.channel.send(':white_check_mark: Songselection now set to `true`!'); - client.global.db.guilds[message.guild.id].dj = true; + client.global.db.guilds[message.guild.id].songSelection = true; } else { - client.global.db.guilds[message.guild.id].dj = false; + client.global.db.guilds[message.guild.id].songSelection = false; message.channel.send(':white_check_mark: Songselection now set to `false`'); } }