1
0
Fork 0

fix unban command

akairo
loicbersier 5 years ago
parent fa19ad9c68
commit b8fa684cb9

@ -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…
Cancel
Save