From 931221f446f0388d75ed054edfa5d4c09e97d1d3 Mon Sep 17 00:00:00 2001 From: loicbersier Date: Sat, 9 Nov 2019 15:00:02 +0100 Subject: [PATCH] Actually update the look of embed --- commands/utility/download.js | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/commands/utility/download.js b/commands/utility/download.js index 9cda0c7d..13b41f7a 100644 --- a/commands/utility/download.js +++ b/commands/utility/download.js @@ -53,9 +53,10 @@ class DownloadCommand extends Command { const Embed = new MessageEmbed() .setColor(message.member.displayHexColor) - .setTitle(`Downloaded by ${message.author.username}`) - .setURL(link) - .setDescription(args.caption); + .setAuthor(`Downloaded by ${message.author.username}`, message.author.displayAvatarURL(), link) + .setDescription(args.caption) + .setFooter('You can get the original video by clicking on the "downloaded by" message!'); + if (link.includes('http') || link.includes('www')) { let loadingmsg = await message.channel.send('Downloading ');