From 12ad9b942dcbfb70c1d0946b3eae260ae3b7d897 Mon Sep 17 00:00:00 2001
From: Supositware <loic.bersier1@gmail.com>
Date: Tue, 12 Mar 2019 20:23:56 +0100
Subject: [PATCH] Send message to the people getting kicked/banned with the
 reasons and from wich server

---
 commands/admin/ban.js  | 3 ++-
 commands/admin/kick.js | 3 ++-
 2 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/commands/admin/ban.js b/commands/admin/ban.js
index 46a170e2..bd0f5bb9 100644
--- a/commands/admin/ban.js
+++ b/commands/admin/ban.js
@@ -38,7 +38,8 @@ class BanCommand extends Command {
 		if(member.id === message.author.id)
 			return message.channel.send('Why would you ban yourself ?');
 
-		member.ban(`Banned by : ${message.author.username} for the following reasons : ${reasons}`)
+		await member.send(`https://youtu.be/55-mHgUjZfY\nYou have been banned from **${message.guild.name}** for the following reasons: "**${reasons}**"`);
+		return 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}".`));
 	}
 }
diff --git a/commands/admin/kick.js b/commands/admin/kick.js
index 1831da20..8d7a4f26 100644
--- a/commands/admin/kick.js
+++ b/commands/admin/kick.js
@@ -38,7 +38,8 @@ class KickCommand extends Command {
 		if(!reasons)
 			reasons = 'Nothing have been specified.';
 
-		await member.kick(`Kicked by : ${message.author.username} for the following reasons : ${reasons}`)
+		await member.send(`You have been kicked from **${message.guild.name}** for the following reasons: "**${reasons}**"`);
+		return 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}".`))
 			.catch(err => console.error(err));
 	}