Added reasons

Commando
loicbersier 6 years ago
parent 021ab9e74b
commit 542e5be326

@ -14,15 +14,21 @@ module.exports = class BanCommand extends Command {
key: 'member', key: 'member',
prompt: 'Wich member would you like to ban?', prompt: 'Wich member would you like to ban?',
type: 'member', 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) if(member.id === message.author.id)
return message.say("Why would you ban yourself ?") return message.say("Why would you ban yourself ?")
member.ban() member.ban(reasons)
.then(() => message.reply(`${member.user.username} was succesfully banned.`)); .then(() => message.reply(`${member.user.username} was succesfully banned with the following reasons "${reasons}".`));
}; };
}; };

@ -14,15 +14,21 @@ module.exports = class KickCommand extends Command {
key: 'member', key: 'member',
prompt: 'Wich member would you like to kick?', prompt: 'Wich member would you like to kick?',
type: 'member', 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) if(member.id === message.author.id)
return message.say("Why would you kick yourself ?") return message.say("Why would you kick yourself ?")
member.kick() member.kick(reasons)
.then(() => message.reply(`${member.user.username} was succesfully kicked.`)); .then(() => message.reply(`${member.user.username} was succesfully kicked with the following reasons "${reasons}".`));
}; };
}; };
Loading…
Cancel
Save