aboutsummaryrefslogtreecommitdiff
path: root/commands
diff options
context:
space:
mode:
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)