diff --git a/commands/admin/ban.js b/commands/admin/ban.js index 5867e7a..3c33c0b 100644 --- a/commands/admin/ban.js +++ b/commands/admin/ban.js @@ -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}".`)); }; }; \ No newline at end of file diff --git a/commands/admin/kick.js b/commands/admin/kick.js index e37df67..b6763ec 100644 --- a/commands/admin/kick.js +++ b/commands/admin/kick.js @@ -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}".`)); }; }; \ No newline at end of file