diff --git a/commands/utility/invite.js b/commands/utility/invite.js index aa3f75d9..6e24432e 100644 --- a/commands/utility/invite.js +++ b/commands/utility/invite.js @@ -6,6 +6,13 @@ class InviteCommand extends Command { super('invite', { aliases: ['invite'], category: 'utility', + args: [ + { + id: 'here', + type: 'string', + optional: true + } + ], description: { content: 'Send invite link for the bot and support server', usage: '', @@ -14,9 +21,14 @@ class InviteCommand extends Command { }); } - async exec(message) { - 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 :)`); + async exec(message, args) { + let invMessage = `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 :)`; + if (args.here == 'here') { + message.channel.send(invMessage); + } else { + message.channel.send('Check your dm'); + return message.author.send(invMessage); + } } }