forked from Supositware/Haha-Yes
36 lines
No EOL
1.3 KiB
JavaScript
36 lines
No EOL
1.3 KiB
JavaScript
const { Command } = require('discord.js-commando');
|
|
module.exports = class KickCommand extends Command {
|
|
constructor(client) {
|
|
super(client, {
|
|
name: 'kick',
|
|
group: 'admin',
|
|
memberName: 'kick',
|
|
description: 'Kick the mentionned user',
|
|
guildOnly: true,
|
|
clientPermissions: ['KICK_MEMBERS'],
|
|
userPermissions: ['KICK_MEMBERS'],
|
|
args: [
|
|
{
|
|
key: 'member',
|
|
prompt: 'Wich member would you like to kick?',
|
|
type: 'member',
|
|
},
|
|
{
|
|
key: 'reasons',
|
|
prompt: 'What is the reasons of the kick',
|
|
type: 'string',
|
|
default: ''
|
|
}
|
|
]
|
|
});
|
|
}
|
|
|
|
async run(message, { member, reasons }) {
|
|
if(!reasons)
|
|
reasons = 'Nothing have been specified.'
|
|
if(member.id === message.author.id)
|
|
return message.say("Why would you kick yourself ?")
|
|
member.kick(`Kicked by : ${message.author.username} for the following reasons : ${reasons}`)
|
|
.then(() => message.reply(`${member.user.username} was succesfully kicked with the following reasons "${reasons}".`));
|
|
};
|
|
}; |