aboutsummaryrefslogtreecommitdiff
path: root/commands/Utility
diff options
context:
space:
mode:
authorpokesudenk <thisis@notarealema.il>2018-02-24 20:00:13 -0500
committerpokesudenk <thisis@notarealema.il>2018-02-24 20:00:13 -0500
commitaa5a3cbb822d44a61481ce1a4c7b0098d240e1f1 (patch)
tree346bbb75814b2678c13db2c18dd70ccd1f6cfcbe /commands/Utility
parentf7c9219876840a69ac5e3f3960b464bd273512b5 (diff)
downloadPokeBot-aa5a3cbb822d44a61481ce1a4c7b0098d240e1f1.tar.gz
PokeBot-aa5a3cbb822d44a61481ce1a4c7b0098d240e1f1.tar.bz2
PokeBot-aa5a3cbb822d44a61481ce1a4c7b0098d240e1f1.zip
bancounts
Diffstat (limited to 'commands/Utility')
-rw-r--r--commands/Utility/userinfo.js1
1 files changed, 1 insertions, 0 deletions
diff --git a/commands/Utility/userinfo.js b/commands/Utility/userinfo.js
index 0ca3985..649459a 100644
--- a/commands/Utility/userinfo.js
+++ b/commands/Utility/userinfo.js
@@ -7,6 +7,7 @@ exports.run = async (bot, msg) => {
.addField('User ID', user.id)
.addField('Account Creation Date', user.user.createdAt)
.addField('Join Guild Date', user.joinedAt)
+ .addField('Ban Count', 'The user has been banned on ' + parseInt(banCounts[user.id]) + ' guilds.')
);
};