From da2caf72b1b0b37f6045993490215c300b28dcb1 Mon Sep 17 00:00:00 2001 From: Loic Bersier Date: Sun, 23 Dec 2018 05:41:50 +0100 Subject: [PATCH] fixed it i think --- commands/admin/ban.js | 4 ++-- commands/admin/kick.js | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/commands/admin/ban.js b/commands/admin/ban.js index 36d5c90..e915923 100644 --- a/commands/admin/ban.js +++ b/commands/admin/ban.js @@ -30,10 +30,10 @@ 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 ?") - await member.send(`https://youtu.be/55-mHgUjZfY\nYou have been banned for the following reasons: "${reasons}"`); + await member.send(`https://youtu.be/55-mHgUjZfY\nYou have been banned for the following reasons: "${reasons}"`) + .error(message.say('Cant ban me fool')) 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}".`)) - .error(message.say('Cant ban me fool')) }; }; \ No newline at end of file diff --git a/commands/admin/kick.js b/commands/admin/kick.js index 23b90a3..72950ca 100644 --- a/commands/admin/kick.js +++ b/commands/admin/kick.js @@ -30,9 +30,9 @@ 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}"`); + await member.send(`You have been kicked for the following reasons: "${reasons}"`) + .error(message.say('Cant kick me fool')) 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}".`)) - .error(message.say('Cant kick me fool')) }; }; \ No newline at end of file