From 2ae08f4dbd0676ff54c608e8bbbfdfd6d08adbbf Mon Sep 17 00:00:00 2001 From: Raven Scott Date: Sun, 20 Aug 2023 19:52:55 -0400 Subject: [PATCH] update --- commands/main/weather.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/main/weather.js b/commands/main/weather.js index 10f92e0..45631a1 100644 --- a/commands/main/weather.js +++ b/commands/main/weather.js @@ -19,7 +19,7 @@ module.exports = { .setTitle(`The weather for: ${location}`) .setTimestamp() .setImage(`https://wttr.in/${encodedLocation}.png`) - .setFooter({ text: `Requested by ${interaction.user.tag}`, iconURL: `${interaction.user.displayAvatarURL()}` }); + .setFooter({ text: `Provided by wttr.in`, iconURL: `${interaction.user.displayAvatarURL()}` }); await interaction.editReply({ embeds: [embed] }); }, };