aboutsummaryrefslogtreecommitdiff
path: root/commands/Utility/userinfo.js
diff options
context:
space:
mode:
authorpokesudenk <thisis@notarealema.il>2018-02-24 20:13:11 -0500
committerpokesudenk <thisis@notarealema.il>2018-02-24 20:13:11 -0500
commit1ab04840cdc66cb257495d95afc5097cb1b4ce67 (patch)
tree129f1e9b1962c86e1d4fa639fe222a603455d68c /commands/Utility/userinfo.js
parent51192d170d1d896e14603ca0ce5b34b31c6c380e (diff)
downloadPokeBot-1ab04840cdc66cb257495d95afc5097cb1b4ce67.tar.gz
PokeBot-1ab04840cdc66cb257495d95afc5097cb1b4ce67.tar.bz2
PokeBot-1ab04840cdc66cb257495d95afc5097cb1b4ce67.zip
ficks
Diffstat (limited to 'commands/Utility/userinfo.js')
-rw-r--r--commands/Utility/userinfo.js4
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}`)
);
};