server settings: add footer to the embed

This commit is contained in:
Ayden Jahola 2024-09-25 23:44:37 +01:00
parent 3021d7f53d
commit b4a056962b
No known key found for this signature in database
GPG key ID: 71DD90AE4AE92742

View file

@ -87,7 +87,11 @@ module.exports = {
},
{ name: "📧 Email Domains", value: emailDomains, inline: true }
)
.setTimestamp();
.setTimestamp()
.setFooter({
text: interaction.guild.name,
iconURL: interaction.guild.iconURL(),
});
await interaction.reply({ embeds: [settingsEmbed], ephemeral: false });
} catch (error) {