make it say that it only work with bot

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

@ -7,14 +7,14 @@ class InviteCommand extends Command {
aliases: ['invite'],
category: 'utility',
args: [
{
id: 'member',
type: 'user'
},
{
id: 'here',
match: 'flag',
flag: '--here'
},
{
id: 'member',
type: 'user'
}
],
description: {
@ -27,8 +27,12 @@ class InviteCommand extends Command {
async exec(message, args) {
let botid;
if (args.member.bot) {
botid = args.member.id;
if (args.member) {
if (args.member.bot) {
botid = args.member.id;
} else {
return message.channel.send('Sorry, the user you mentioned is not a bot!');
}
} else {
botid = this.client.user.id;
}

Loading…
Cancel
Save