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