1
0
mirror of https://github.com/musix-org/musix-oss synced 2024-09-20 01:21:56 +00:00

Update forcestop.js

This commit is contained in:
Matte 2019-10-20 20:54:32 +03:00 committed by GitHub
parent 50821c2b2b
commit 52de7012d3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -4,7 +4,7 @@ module.exports = {
cooldown: 5, cooldown: 5,
execute(message, args, client, Discord, prefix) { execute(message, args, client, Discord, prefix) {
if (message.author.id !== '360363051792203779') return message.channel.send(':x: You are not allowed to do that!') if (message.author.id !== '360363051792203779') return message.channel.send(':x: You are not allowed to do that!')
client.queue.delete(guild.id); client.queue.delete(message.guild.id);
message.channel.send('queue deleted') message.channel.send('queue deleted')
} }
}; };