diff options
| author | Alee14 <Alee14498@gmail.com> | 2017-08-17 19:32:58 -0400 |
|---|---|---|
| committer | Alee14 <Alee14498@gmail.com> | 2017-08-17 19:32:58 -0400 |
| commit | a1868f7481f22b07b6dc491c6a05b370856191d3 (patch) | |
| tree | 4e6b0ca8268d763f3ebb6144d85e8a09723947a0 /commands/userinfo.js | |
| parent | 72ce9472f507ed003fe8378be025e6334349bf19 (diff) | |
| parent | e0445f5deccd2adb2f57720f8f846f3e3945db16 (diff) | |
| download | AleeBot-a1868f7481f22b07b6dc491c6a05b370856191d3.tar.gz AleeBot-a1868f7481f22b07b6dc491c6a05b370856191d3.tar.bz2 AleeBot-a1868f7481f22b07b6dc491c6a05b370856191d3.zip | |
Merge branch 'master' into beta
Diffstat (limited to 'commands/userinfo.js')
| -rw-r--r-- | commands/userinfo.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/commands/userinfo.js b/commands/userinfo.js index 2bb36fe..4e845e6 100644 --- a/commands/userinfo.js +++ b/commands/userinfo.js @@ -3,9 +3,9 @@ exports.run = (client, message, args, config) => { var embed = new Discord.RichEmbed() .setAuthor(message.author.username, message.author.avatarURL) .setDescription("Here's your info.") - .addField("Names", "**Username:** " + message.author.username + "\n**Display Name:** " + message.member.displayName) - .addField("Identity", "**User ID:** " + message.author.id + "\n**Discriminator:** " + message.author.discriminator) - .addField("Create and Join Times", "**Created account at:** " + message.member.user.createdAt + "\n**Joined server at:** " + message.member.joinedAt) + .addField("Names", "Username: " + message.author.username + "\nNickname: " + message.member.displayName) + .addField("Identity", "User ID: " + message.author.id + "\nDiscriminator: " + message.author.discriminator) + .addField("Create and Join Times", "Created account at: " + message.member.user.createdAt + "\nJoined server at: " + message.member.joinedAt) .setColor("#7af442") message.channel.sendEmbed(embed); |
