Send message to the user who got banned

This commit is contained in:
Loic Bersier 2018-11-08 20:48:01 +01:00
parent 2c05d3322e
commit 3a066c2bc6

View file

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