From 8483f4d65752c6bf4e480c3ecb5f4d522491881c Mon Sep 17 00:00:00 2001 From: loicbersier Date: Wed, 17 Oct 2018 19:11:46 +0200 Subject: [PATCH] More detailed kick/ban message --- commands/admin/ban.js | 2 +- commands/admin/kick.js | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) 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