From 7045215956599db522ce8cba38eaef5f6fe13b11 Mon Sep 17 00:00:00 2001
From: loicbersier <loic.bersier1@gmail.com>
Date: Tue, 25 Sep 2018 22:48:36 +0200
Subject: [PATCH] Removed todo

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

diff --git a/commands/admin/ban.js b/commands/admin/ban.js
index 0f23cd44..d766ce4f 100644
--- a/commands/admin/ban.js
+++ b/commands/admin/ban.js
@@ -25,8 +25,5 @@ module.exports = class BanCommand extends Command {
         } else
         member.ban()
             .then(() => message.reply(`${member.user.username} was succesfully banned.`));
-
-            //TODO
-            //Send a message when the bot didint manage to kick
         };
 };
\ No newline at end of file
diff --git a/commands/admin/kick.js b/commands/admin/kick.js
index a271daeb..feefdb9f 100644
--- a/commands/admin/kick.js
+++ b/commands/admin/kick.js
@@ -25,8 +25,5 @@ module.exports = class KickCommand extends Command {
         } else
         member.kick()
         .then(() => message.reply(`${member.user.username} was succesfully kicked.`));
-
-            //TODO
-            //Send a message when the bot didint manage to kick
         };
 };
\ No newline at end of file