forked from Supositware/Haha-Yes
Restored like it was before
This commit is contained in:
parent
18b9aa86e4
commit
0f845a5f17
1 changed files with 2 additions and 4 deletions
|
@ -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…
Reference in a new issue