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