Forgot a semicolon

This commit is contained in:
loicbersier 2019-01-03 16:10:36 +01:00
parent bdfcc69453
commit e9868775a6

View file

@ -15,7 +15,7 @@ class InviteCommand extends Command {
} }
async exec(message) { async exec(message) {
message.channel.send('Check your dm') 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 :)`); 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 :)`);
} }
} }