1
0
Fork 0

Added todo

Commando
loicbersier 6 years ago
parent 9322464501
commit 0a804b3e67

@ -24,11 +24,10 @@ module.exports = class BanCommand extends Command {
if(member.id === message.author.id) {
message.say("Why would you ban yourself ?")
} else
member.ban().then(member => {
message.reply(`${member.user.username} was succesfully banned.`);
member.ban()
.then(() => message.reply(`${member.user.username} was succesfully banned.`));
//TODO
//Send a message when the bot didint manage to kick
});
}
};
};

@ -24,8 +24,10 @@ module.exports = class KickCommand extends Command {
if(member.id === message.author.id) {
message.say("Why would you kick yourself ?")
} else
member.kick().then(member => {
message.reply(`${member.user.username} was succesfully kicked.`);
});
}
member.kick()
.then(() => message.reply(`${member.user.username} was succesfully kicked.`));
//TODO
//Send a message when the bot didint manage to kick
};
};
Loading…
Cancel
Save