forked from Supositware/Haha-Yes
testing thing
This commit is contained in:
parent
60d6c6bd2c
commit
18b9aa86e4
1 changed files with 7 additions and 5 deletions
|
@ -1,13 +1,12 @@
|
|||
const { Command } = require('discord.js-commando');
|
||||
module.exports = class GiveRankCommand extends Command {
|
||||
module.exports = class GAssignRankCommand extends Command {
|
||||
constructor(client) {
|
||||
super(client, {
|
||||
name: 'giverank',
|
||||
name: 'assignrank',
|
||||
group: 'admin',
|
||||
memberName: 'giverank',
|
||||
memberName: 'Assignrank',
|
||||
description: 'Assign a rank to the mentionned user',
|
||||
clientPermissions: ['MANAGE_ROLES'],
|
||||
userPermissions: ['MANAGE_ROLES'],
|
||||
guildOnly: true,
|
||||
args: [
|
||||
{
|
||||
|
@ -27,9 +26,12 @@ module.exports = class GiveRankCommand 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
|
||||
} else if (userPermissions = 'MANAGE_ROLES')
|
||||
member.addRole(role);
|
||||
message.say(`You successfully gived the rank **${rank}** to **${member}**`);
|
||||
}
|
Loading…
Reference in a new issue