1
0
mirror of https://github.com/musix-org/musix-oss synced 2024-11-10 02:00:20 +00:00

Create forcestop.js

This commit is contained in:
MatteZ02 2019-10-20 20:31:37 +03:00
parent a6d4dcbcd5
commit 34aeeede66

9
commands/forcestop.js Normal file
View File

@ -0,0 +1,9 @@
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);
}
};