better message

merge-requests/4/head
loicbersier 5 years ago
parent df0d295c08
commit fd63064022

@ -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 {
@ -46,5 +42,6 @@ class InviteCommand extends Command {
} }
} }
} }
}
module.exports = InviteCommand; module.exports = InviteCommand;
Loading…
Cancel
Save