1
0
mirror of https://github.com/musix-org/musix-oss synced 2024-09-20 04:31:56 +00:00
musix-oss/commands/forcestop.js
2019-10-20 20:31:37 +03:00

9 lines
312 B
JavaScript

module.exports = {
name: 'stop',
description: 'Stop command.',
cooldown: 5,
execute(message, args, client, Discord, prefix) {
if (message.author.id !== '360363051792203779') return message.channel.send(':x: You are not allowed to do that!')
client.queue.delete(guild.id);
}
};