Deleted wrong description

This commit is contained in:
= 2021-07-18 21:11:03 -04:00
parent 1d4462ad6c
commit c3dea5ffa0
1 changed files with 1 additions and 1 deletions

View File

@ -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}`);
},