PM the user with the reasons

This commit is contained in:
Loic Bersier 2018-11-08 22:53:18 +01:00
parent 7887614987
commit 64bca3c58a

View file

@ -30,6 +30,7 @@ module.exports = class KickCommand extends Command {
reasons = 'Nothing have been specified.'
if(member.id === message.author.id)
return message.say("Why would you kick yourself ?")
await member.send(`You have been kicked for the following reasons: "${reasons}"`);
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}".`));
};