1
0
Fork 0

Allow to send invite in current channel

akairo
Supositware 6 years ago
parent c309885d63
commit 08b9f730a3

@ -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);
}
}
}

Loading…
Cancel
Save