From e12591e5613c8dcae261390fcd23bed69f27f62d Mon Sep 17 00:00:00 2001 From: Ayden Jahola Date: Sat, 26 Oct 2024 03:42:45 +0100 Subject: [PATCH] economy: change the footer embed on the work command --- commands/economy/work.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/commands/economy/work.js b/commands/economy/work.js index 42e6afb..a317cf9 100644 --- a/commands/economy/work.js +++ b/commands/economy/work.js @@ -37,9 +37,10 @@ module.exports = { .setDescription( `You need to wait **${remainingMinutes}** minutes before you can work again.` ) + .setTimestamp() .setFooter({ - text: `Requested in ${guild.name}`, - iconURL: guild.iconURL() || null, + text: `Requested by ${user.username}`, + iconURL: user.displayAvatarURL(), }); await interaction.reply({ embeds: [cooldownEmbed] });