diff options
| author | pokesudenk <thisis@notarealema.il> | 2018-02-24 20:13:11 -0500 |
|---|---|---|
| committer | pokesudenk <thisis@notarealema.il> | 2018-02-24 20:13:11 -0500 |
| commit | 1ab04840cdc66cb257495d95afc5097cb1b4ce67 (patch) | |
| tree | 129f1e9b1962c86e1d4fa639fe222a603455d68c | |
| parent | 51192d170d1d896e14603ca0ce5b34b31c6c380e (diff) | |
| download | PokeBot-1ab04840cdc66cb257495d95afc5097cb1b4ce67.tar.gz PokeBot-1ab04840cdc66cb257495d95afc5097cb1b4ce67.tar.bz2 PokeBot-1ab04840cdc66cb257495d95afc5097cb1b4ce67.zip | |
ficks
| -rw-r--r-- | commands/Utility/userinfo.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/commands/Utility/userinfo.js b/commands/Utility/userinfo.js index cf95bc7..f9bf25f 100644 --- a/commands/Utility/userinfo.js +++ b/commands/Utility/userinfo.js @@ -4,11 +4,11 @@ exports.run = async (bot, msg) => { msg.channel.send( new RichEmbed() .setColor(0x00ae86) - .setTitle(`Information for ${user.user.tag}`) + .setTitle(`User Information`) .addField('User ID', user.id) .addField('Account Creation Date', user.user.createdAt) .addField('Join Guild Date', user.joinedAt) - .addField('Names', 'Display Name: ' + user.displayName + '\nUsername: ' + user.tag) + .addField('Names', 'Display Name: ' + user.displayName + `Username: ${user.user.tag}`) ); }; |
