1
0
Fork 0

Restored like it was before

Commando
Loïc Bersier 6 years ago
parent 18b9aa86e4
commit 0f845a5f17

@ -7,6 +7,7 @@ module.exports = class GAssignRankCommand extends Command {
memberName: 'Assignrank',
description: 'Assign a rank to the mentionned user',
clientPermissions: ['MANAGE_ROLES'],
userPermissions: ['MANAGE_ROLES'],
guildOnly: true,
args: [
{
@ -26,12 +27,9 @@ module.exports = class GAssignRankCommand extends Command {
run(message, { rank, member }) {
const role = message.guild.roles.find('name', rank);
member = message.mentions.members.first();
if (!message.mentions.users.size) {
return message.channel.send(`You succesfully gived the rank **${rank}** to yourself: ${message.author.addRole(role)}`);
}
if (!role) {
message.say("The rank you tried to assign dosent exist ( or bot have a lower rank than the one you tried to assign");
} else if (userPermissions = 'MANAGE_ROLES')
} else
member.addRole(role);
message.say(`You successfully gived the rank **${rank}** to **${member}**`);
}

Loading…
Cancel
Save