blob: 8edc030f983e49b5e280c588f9301102cb4b04ba (
plain) (
blame)
1
2
3
4
5
6
7
8
|
module.exports = {
name: 'membercount',
aliases: ['memberc', 'mcount', 'mc'],
description: '',
execute(msg, args, bot) {
msg.reply(`there are **${msg.guild.memberCount}** members in **${msg.guild.name}**`);
}
};
|