summaryrefslogtreecommitdiff
path: root/commands/membercount.js
diff options
context:
space:
mode:
Diffstat (limited to 'commands/membercount.js')
-rw-r--r--commands/membercount.js8
1 files changed, 8 insertions, 0 deletions
diff --git a/commands/membercount.js b/commands/membercount.js
new file mode 100644
index 0000000..8edc030
--- /dev/null
+++ b/commands/membercount.js
@@ -0,0 +1,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}**`);
+ }
+}; \ No newline at end of file