diff options
| author | pokesudenk <thisis@notarealema.il> | 2018-02-24 20:12:04 -0500 |
|---|---|---|
| committer | pokesudenk <thisis@notarealema.il> | 2018-02-24 20:12:04 -0500 |
| commit | 51192d170d1d896e14603ca0ce5b34b31c6c380e (patch) | |
| tree | 4174d80c35020406b48e09ce851fa42e002f7b85 /commands | |
| parent | 8d519e3778c4598910dc1225465b615a436356c1 (diff) | |
| download | PokeBot-51192d170d1d896e14603ca0ce5b34b31c6c380e.tar.gz PokeBot-51192d170d1d896e14603ca0ce5b34b31c6c380e.tar.bz2 PokeBot-51192d170d1d896e14603ca0ce5b34b31c6c380e.zip | |
added display names
Diffstat (limited to 'commands')
| -rw-r--r-- | commands/Utility/userinfo.js | 2 |
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) ); }; |
