From ebb4575e62db30f2e2120f61c7844b73ec29b16c Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Lo=C3=AFc=20Bersier?= <loic.bersier1@gmail.com>
Date: Sun, 9 Sep 2018 00:48:50 +0200
Subject: [PATCH] changed color for when people add/kick the bot

---
 index.js | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/index.js b/index.js
index d8c6daa1..15a4981f 100644
--- a/index.js
+++ b/index.js
@@ -35,8 +35,8 @@ client.registry
         console.log(`${guild.name}\n${guild.memberCount} users\nOwner: ${guild.owner}`);
         const channel = client.channels.get('487766113292124160');
         const exampleEmbed = {
-            color: 0x0099ff,
-            title: 'New guild!',
+            color: 0x008000,
+            title: 'Someone added the bot! :D YAY',
             description: `${guild.name}\n${guild.memberCount} users\nOwner: ${guild.owner}`,
             timestamp: new Date(),
         };
@@ -48,7 +48,7 @@ client.registry
         console.log(`***BOT KICKED***\n${guild.name}\n${guild.memberCount} users\nOwner: ${guild.owner}\n***BOT KICKED***`);
         const channel = client.channels.get('487766113292124160');
         const exampleEmbed = {
-            color: 0x0099ff,
+            color: 0xFF0000,
             title: 'Someone kicked the bot :(',
             description: `${guild.name}\n${guild.memberCount} users\nOwner: ${guild.owner}`,
             timestamp: new Date(),