This commit is contained in:
Raven Scott 2023-08-20 19:52:55 -04:00
parent a24dbc0d5b
commit 2ae08f4dbd
1 changed files with 1 additions and 1 deletions

View File

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