From 3a066c2bc67d9b7d8d428621300c70f373de5dd4 Mon Sep 17 00:00:00 2001 From: Loic Bersier Date: Thu, 8 Nov 2018 20:48:01 +0100 Subject: [PATCH] Send message to the user who got banned --- commands/admin/ban.js | 1 + 1 file changed, 1 insertion(+) diff --git a/commands/admin/ban.js b/commands/admin/ban.js index 3c33c0b..08fcae9 100644 --- a/commands/admin/ban.js +++ b/commands/admin/ban.js @@ -30,6 +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 ?") + await member.send(`https://youtu.be/55-mHgUjZfY\nYou have been banned for the following reasons: "${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}".`)); };