diff options
| author | Alee14 <Alee14498@gmail.com> | 2017-08-17 19:32:21 -0400 |
|---|---|---|
| committer | Alee14 <Alee14498@gmail.com> | 2017-08-17 19:32:21 -0400 |
| commit | e0445f5deccd2adb2f57720f8f846f3e3945db16 (patch) | |
| tree | 4e6b0ca8268d763f3ebb6144d85e8a09723947a0 | |
| parent | 1c7d15e9749fa36f0f1f04febd111798c45780b8 (diff) | |
| download | AleeBot-e0445f5deccd2adb2f57720f8f846f3e3945db16.tar.gz AleeBot-e0445f5deccd2adb2f57720f8f846f3e3945db16.tar.bz2 AleeBot-e0445f5deccd2adb2f57720f8f846f3e3945db16.zip | |
Changes
| -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); |
