module.exports = { name: 'forcestop', description: 'force stop command.', alias: 'fs', cooldown: 5, execute(message, args, client, Discord, prefix) { 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') } };