From 6d864dd2ec008ebd6bc352503f03cd6117c21cf8 Mon Sep 17 00:00:00 2001 From: loicbersier Date: Thu, 11 Feb 2021 15:27:07 +0100 Subject: [PATCH] fix invite --- commands/utility/invite.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/commands/utility/invite.js b/commands/utility/invite.js index d8b7d2d..6e310cd 100644 --- a/commands/utility/invite.js +++ b/commands/utility/invite.js @@ -34,7 +34,7 @@ class InviteCommand extends Command { return message.channel.send('Sorry, the user you mentioned is not a bot!'); } } else { - let invMessage = `You can add me from here: https://discordapp.com/oauth2/authorize?client_id=${this.client.user.id}&scope=bot&scope=applications.commands&permissions=0\nYou can also join my support server over here: ${supportServer} come and say hi :)`; + let invMessage = `You can add me from here: https://discord.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 :)`; if (args.here) { message.channel.send(invMessage); } else { @@ -50,4 +50,4 @@ class InviteCommand extends Command { } } -module.exports = InviteCommand; \ No newline at end of file +module.exports = InviteCommand;