forked from Supositware/Haha-Yes
Added reasons
This commit is contained in:
parent
021ab9e74b
commit
542e5be326
2 changed files with 20 additions and 8 deletions
|
@ -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…
Reference in a new issue