aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorpokesudenk <thisis@notarealema.il>2018-02-24 20:12:04 -0500
committerpokesudenk <thisis@notarealema.il>2018-02-24 20:12:04 -0500
commit51192d170d1d896e14603ca0ce5b34b31c6c380e (patch)
tree4174d80c35020406b48e09ce851fa42e002f7b85
parent8d519e3778c4598910dc1225465b615a436356c1 (diff)
downloadPokeBot-51192d170d1d896e14603ca0ce5b34b31c6c380e.tar.gz
PokeBot-51192d170d1d896e14603ca0ce5b34b31c6c380e.tar.bz2
PokeBot-51192d170d1d896e14603ca0ce5b34b31c6c380e.zip
added display names
-rw-r--r--commands/Utility/userinfo.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/commands/Utility/userinfo.js b/commands/Utility/userinfo.js
index 2f063cb..cf95bc7 100644
--- a/commands/Utility/userinfo.js
+++ b/commands/Utility/userinfo.js
@@ -8,7 +8,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.')
+ .addField('Names', 'Display Name: ' + user.displayName + '\nUsername: ' + user.tag)
);
};