More detailed kick/ban message

Commando
loicbersier 6 years ago
parent a9907488fe
commit 8483f4d657

@ -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}".`));
};
};

@ -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}".`));
};
};
Loading…
Cancel
Save