diff options
| author | Alee <alee14498@gmail.com> | 2018-04-14 18:42:26 -0400 |
|---|---|---|
| committer | Alee <alee14498@gmail.com> | 2018-04-14 18:42:26 -0400 |
| commit | 14f82c6c54252ce19943ae174e3557d7ba56026d (patch) | |
| tree | 3c0cb8773321647368243c695d1b07990c724e29 /commands/userinfo.js | |
| parent | ee864e482c053a7ac64ed89196e547e0913c0398 (diff) | |
| download | AleeBot-14f82c6c54252ce19943ae174e3557d7ba56026d.tar.gz AleeBot-14f82c6c54252ce19943ae174e3557d7ba56026d.tar.bz2 AleeBot-14f82c6c54252ce19943ae174e3557d7ba56026d.zip | |
More changes
Diffstat (limited to 'commands/userinfo.js')
| -rw-r--r-- | commands/userinfo.js | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/commands/userinfo.js b/commands/userinfo.js index 35647c3..bd6c999 100644 --- a/commands/userinfo.js +++ b/commands/userinfo.js @@ -22,9 +22,10 @@ module.exports.run = async (client, message) => { var embed = new Discord.RichEmbed() .setAuthor(message.author.tag, message.author.avatarURL) .setDescription("User Information") - .addField("Names", "Username: " + message.author.username + "\nCurrent Nickname: " + message.member.displayName) - .addField("Identity", "User ID: " + message.author.id + "") - .addField("Create and Join Times", "Created account at: " + message.member.user.createdAt.toUTCString() + "\nJoined server at: " + message.member.joinedAt.toUTCString()) + .setThumbnail(message.author.avatarURL) + .addField("Names", "**Username:** " + message.author.username + "\n**Current Nickname:** " + message.member.displayName) + .addField("Identity", `**User ID:** ${message.author.id} `) + .addField("Create and Join Times", "**Created At:** " + message.member.user.createdAt.toUTCString() + "\n**Joined Guild At:** " + message.member.joinedAt.toUTCString()) .setColor('#1fd619') message.channel.send({embed}); |
