Make browser and mobile embeds not suck

This commit is contained in:
Daniel Odendahl Jr
2018-10-03 17:14:32 +00:00
parent bf57e5ad04
commit 211afce0dd
5 changed files with 6 additions and 11 deletions
+2 -2
View File
@@ -23,8 +23,8 @@ module.exports = class MessageInfoCommand extends Command {
run(msg, { message }) {
const embed = new MessageEmbed()
.setColor(message.member ? message.member.displayHexColor : 0x00AE86)
.setThumbnail(message.author.displayAvatarURL())
.setAuthor(msg.author.tag, msg.author.displayAvatarURL())
.setThumbnail(message.author.displayAvatarURL({ format: 'png' }))
.setAuthor(msg.author.tag, msg.author.displayAvatarURL({ format: 'png' }))
.setDescription(message.content)
.setTimestamp(message.createdAt)
.setFooter(`ID: ${message.id}`)