summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlee14 <Alee14498@gmail.com>2017-08-17 22:44:04 -0400
committerAlee14 <Alee14498@gmail.com>2017-08-17 22:44:04 -0400
commit7d1edb6e1b621fdd13783501821d121c9ad107c9 (patch)
treefff78597496fa5c2c73d1fdc98366f3f8c78dfb3
parent6e25329f2181823d331dcdbd3876b28115272c9a (diff)
downloadAleeBot-7d1edb6e1b621fdd13783501821d121c9ad107c9.tar.gz
AleeBot-7d1edb6e1b621fdd13783501821d121c9ad107c9.tar.bz2
AleeBot-7d1edb6e1b621fdd13783501821d121c9ad107c9.zip
Userinfo improvements
-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)