From 9c53826591753f751a2abd235b5c623109165c73 Mon Sep 17 00:00:00 2001
From: loicbersier <loic.bersier1@gmail.com>
Date: Fri, 19 Oct 2018 23:46:52 +0200
Subject: [PATCH] Send invite to dm so it dosent count as ad

---
 commands/utility/invite.js | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/commands/utility/invite.js b/commands/utility/invite.js
index 164aa72..f24314e 100644
--- a/commands/utility/invite.js
+++ b/commands/utility/invite.js
@@ -15,6 +15,7 @@ module.exports = class InviteCommand extends Command {
     async run(message) {
         if(blacklist[message.author.id])
         return message.channel.send("You are blacklisted")
-        return message.say(`You can add me from here: https://discordapp.com/oauth2/authorize?client_id=${this.client.user.id}&scope=bot&permissions=0\nYou can also join my support server over here: ${supportServer} come and say hi :)`);
+        message.say('Check your dm')
+        return message.author.send(`You can add me from here: https://discordapp.com/oauth2/authorize?client_id=${this.client.user.id}&scope=bot&permissions=0\nYou can also join my support server over here: ${supportServer} come and say hi :)`);
     }
 };
\ No newline at end of file