fix unban command
This commit is contained in:
parent
fa19ad9c68
commit
b8fa684cb9
1 changed files with 9 additions and 3 deletions
|
@ -8,9 +8,10 @@ class UnbanCommand extends Command {
|
||||||
args: [
|
args: [
|
||||||
{
|
{
|
||||||
id: 'member',
|
id: 'member',
|
||||||
type: 'member',
|
type: 'integer',
|
||||||
prompt: {
|
prompt: {
|
||||||
start: 'which member do you want to unban?',
|
start: 'which member do you want to unban?',
|
||||||
|
retry: 'This doesn\'t look like an ID, please try again'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
@ -26,8 +27,13 @@ class UnbanCommand extends Command {
|
||||||
}
|
}
|
||||||
|
|
||||||
async exec(message, args) {
|
async exec(message, args) {
|
||||||
message.guild.unban(args.member)
|
message.guild.members.unban(args.member.toString())
|
||||||
.then(() => message.reply('user was succesfully unbanned.'));
|
.then(() => {
|
||||||
|
return message.reply('user was succesfully unbanned.');
|
||||||
|
})
|
||||||
|
.catch(() => {
|
||||||
|
return message.reply('Could not unban this user, is he banned in the first place?');
|
||||||
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue