better message
This commit is contained in:
parent
df0d295c08
commit
fd63064022
1 changed files with 8 additions and 11 deletions
|
@ -26,18 +26,14 @@ class InviteCommand extends Command {
|
||||||
}
|
}
|
||||||
|
|
||||||
async exec(message, args) {
|
async exec(message, args) {
|
||||||
let botid;
|
|
||||||
if (args.member) {
|
if (args.member) {
|
||||||
if (args.member.bot) {
|
if (args.member.bot) {
|
||||||
botid = args.member.id;
|
return message.channel.send(`You can add the bot you mentioned with this link: https://discordapp.com/oauth2/authorize?client_id=${args.member.id}&scope=bot&permissions=0`);
|
||||||
} else {
|
} else {
|
||||||
return message.channel.send('Sorry, the user you mentioned is not a bot!');
|
return message.channel.send('Sorry, the user you mentioned is not a bot!');
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
botid = this.client.user.id;
|
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 :)`;
|
||||||
}
|
|
||||||
|
|
||||||
let invMessage = `You can add me from here: https://discordapp.com/oauth2/authorize?client_id=${botid}&scope=bot&permissions=0\nYou can also join my support server over here: ${supportServer} come and say hi :)`;
|
|
||||||
if (args.here) {
|
if (args.here) {
|
||||||
message.channel.send(invMessage);
|
message.channel.send(invMessage);
|
||||||
} else {
|
} else {
|
||||||
|
@ -45,6 +41,7 @@ class InviteCommand extends Command {
|
||||||
return message.author.send(invMessage);
|
return message.author.send(invMessage);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
module.exports = InviteCommand;
|
module.exports = InviteCommand;
|
Loading…
Reference in a new issue