Invite change with the client id

This commit is contained in:
Loic Bersier 2018-09-17 21:17:48 +02:00
parent 4265d16721
commit 82bb670e34

View file

@ -10,6 +10,6 @@ module.exports = class InviteCommand extends Command {
}
async run(message) {
return message.say('You can add me from here: https://discordapp.com/oauth2/authorize?client_id=487342817048264704&scope=bot&permissions=2054\nYou can join my support server over here: https://discord.gg/SsMCsVY come and say hi :)');
return message.say(`You can add me from here: https://discordapp.com/oauth2/authorize?client_id=${this.client.user.id}&scope=bot&permissions=2054\nYou can join my support server over here: https://discord.gg/SsMCsVY come and say hi :)`);
}
};