From e9868775a66fd7adf4e6fb97b9aa02f7d5043b62 Mon Sep 17 00:00:00 2001 From: loicbersier Date: Thu, 3 Jan 2019 16:10:36 +0100 Subject: [PATCH] Forgot a semicolon --- commands/utility/invite.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/utility/invite.js b/commands/utility/invite.js index 79a94ae1..aa3f75d9 100644 --- a/commands/utility/invite.js +++ b/commands/utility/invite.js @@ -15,7 +15,7 @@ class InviteCommand extends Command { } async exec(message) { - message.channel.send('Check your dm') + message.channel.send('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 :)`); } }