Added reasons

This commit is contained in:
loicbersier 2018-10-12 10:50:54 +02:00
parent 021ab9e74b
commit 542e5be326
2 changed files with 20 additions and 8 deletions

View file

@ -14,15 +14,21 @@ module.exports = class BanCommand extends Command {
key: 'member',
prompt: 'Wich member would you like to ban?',
type: 'member',
}
},
{
key: 'reasons',
prompt: 'What is the reasons of the kick',
type: 'string',
default: ''
}
]
});
}
async run(message, { member }) {
async run(message, { member, reasons }) {
if(member.id === message.author.id)
return message.say("Why would you ban yourself ?")
member.ban()
.then(() => message.reply(`${member.user.username} was succesfully banned.`));
member.ban(reasons)
.then(() => message.reply(`${member.user.username} was succesfully banned with the following reasons "${reasons}".`));
};
};

View file

@ -14,15 +14,21 @@ module.exports = class KickCommand extends Command {
key: 'member',
prompt: 'Wich member would you like to kick?',
type: 'member',
}
},
{
key: 'reasons',
prompt: 'What is the reasons of the kick',
type: 'string',
default: ''
}
]
});
}
async run(message, { member }) {
async run(message, { member, reasons }) {
if(member.id === message.author.id)
return message.say("Why would you kick yourself ?")
member.kick()
.then(() => message.reply(`${member.user.username} was succesfully kicked.`));
member.kick(reasons)
.then(() => message.reply(`${member.user.username} was succesfully kicked with the following reasons "${reasons}".`));
};
};