diff --git a/commands/forcestop.js b/commands/forcestop.js index 4548ea13..3e0ddb71 100644 --- a/commands/forcestop.js +++ b/commands/forcestop.js @@ -4,7 +4,7 @@ module.exports = { alias: 'fs', cooldown: 5, execute(message, args, client, Discord, prefix) { - if (message.author.id !== client.global.devId) return message.channel.send(':x: You are not allowed to do that!') + if (message.author.id !== client.config.devId) return message.channel.send(':x: You are not allowed to do that!') client.queue.delete(message.guild.id); message.channel.send('queue deleted') }