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
+1 -6
View File
@@ -20,11 +20,6 @@ module.exports = class EmbedCommand extends Command {
}
run(msg, { text }) {
const embed = new MessageEmbed()
.setAuthor(msg.author.tag, msg.author.displayAvatarURL())
.setColor(0x00AE86)
.setTimestamp()
.setDescription(text);
return msg.embed(embed);
return msg.embed(new MessageEmbed().setDescription(text));
}
};