aboutsummaryrefslogtreecommitdiff
path: root/commands
diff options
context:
space:
mode:
Diffstat (limited to 'commands')
-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.')
);
};