From c3dea5ffa0f86797aa22ff1a3cc9f653bdf88783 Mon Sep 17 00:00:00 2001 From: = Date: Sun, 18 Jul 2021 21:11:03 -0400 Subject: [PATCH] Deleted wrong description --- functions.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/functions.js b/functions.js index 07b3cc5..afeef46 100644 --- a/functions.js +++ b/functions.js @@ -48,7 +48,6 @@ module.exports = { createGifEmbed(data, author, command) { return new Discord.MessageEmbed() .setAuthor(command) - .setDescription(data.embed_url) .setImage(data.embed_url) .setTimestamp() .setFooter(`@${author.username}#${author.discriminator}`); @@ -105,6 +104,7 @@ module.exports = { createTextEmbed(data, author, command) { return new Discord.MessageEmbed() .setAuthor(command) + .setDescription(data.content) .setTimestamp() .setFooter(`@${author.username}#${author.discriminator}`); },