1
0
mirror of https://github.com/musix-org/musix-oss synced 2024-09-20 17:11:57 +00:00
musix-oss/commands/end.js

14 lines
326 B
JavaScript
Raw Normal View History

2020-03-03 20:24:41 +00:00
module.exports = {
name: 'end',
alias: 'e',
usage: '',
description: 'end the queue',
onlyDev: true,
permission: 'dev',
category: 'util',
async execute(msg, args, client, Discord, prefix, command) {
2020-03-04 16:21:20 +00:00
client.queue.delete(msg.guild.id);
2020-03-03 20:24:41 +00:00
msg.channel.send('Queue deleted!');
}
};