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