aboutsummaryrefslogtreecommitdiff
path: root/commands
diff options
context:
space:
mode:
authorAlee14 <Alee14498@gmail.com>2017-08-17 22:44:53 -0400
committerAlee14 <Alee14498@gmail.com>2017-08-17 22:44:53 -0400
commit49b1fc954e20988d75d76d6e0855da6851a22d9b (patch)
treefff78597496fa5c2c73d1fdc98366f3f8c78dfb3 /commands
parent9260fbc3029c45c937564a4760028c403e8d838a (diff)
parent7d1edb6e1b621fdd13783501821d121c9ad107c9 (diff)
downloadAleeBot-49b1fc954e20988d75d76d6e0855da6851a22d9b.tar.gz
AleeBot-49b1fc954e20988d75d76d6e0855da6851a22d9b.tar.bz2
AleeBot-49b1fc954e20988d75d76d6e0855da6851a22d9b.zip
Merge branch 'master' into beta
Diffstat (limited to 'commands')
-rw-r--r--commands/userinfo.js1
1 files changed, 1 insertions, 0 deletions
diff --git a/commands/userinfo.js b/commands/userinfo.js
index 4e845e6..4721e37 100644
--- a/commands/userinfo.js
+++ b/commands/userinfo.js
@@ -2,6 +2,7 @@ const Discord = require('discord.js');
exports.run = (client, message, args, config) => {
var embed = new Discord.RichEmbed()
.setAuthor(message.author.username, message.author.avatarURL)
+ .setThumbnail(message.author.avatarURL)
.setDescription("Here's your info.")
.addField("Names", "Username: " + message.author.username + "\nNickname: " + message.member.displayName)
.addField("Identity", "User ID: " + message.author.id + "\nDiscriminator: " + message.author.discriminator)