More detailed kick/ban message

This commit is contained in:
loicbersier 2018-10-17 19:11:46 +02:00
parent a9907488fe
commit 8483f4d657
2 changed files with 3 additions and 3 deletions

View file

@ -30,7 +30,7 @@ module.exports = class BanCommand extends Command {
reasons = 'Nothing have been specified'
if(member.id === message.author.id)
return message.say("Why would you ban yourself ?")
member.ban(reasons)
member.ban(`Banned by : ${message.author.username} for the following reasons : ${reasons}`)
.then(() => message.reply(`${member.user.username} was succesfully banned with the following reasons "${reasons}".`));
};
};

View file

@ -27,10 +27,10 @@ module.exports = class KickCommand extends Command {
async run(message, { member, reasons }) {
if(!reasons)
reasons = 'Nothing have been specified'
reasons = 'Nothing have been specified.'
if(member.id === message.author.id)
return message.say("Why would you kick yourself ?")
member.kick(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}".`));
};
};