Removing useless forcestatis option

This commit is contained in:
2024-01-07 23:02:28 +01:00
parent a6d6d86288
commit 0296dbff77
27 changed files with 65 additions and 65 deletions

View File

@@ -52,7 +52,7 @@ export = {
embeds: [{
author: {
name: interaction.user.username,
icon_url: interaction.user.avatarURL({ forceStatic: false }) || undefined,
icon_url: interaction.user.avatarURL() || undefined,
},
title: "Nickname",
description: `
@@ -62,11 +62,11 @@ export = {
`,
color: embedColor,
thumbnail: {
url: interaction.user.avatarURL({ forceStatic: false }) || "",
url: interaction.user.avatarURL() || "",
},
footer: {
text: "ID: " + member.user.id,
icon_url: member.user.avatarURL({ forceStatic: false }) || undefined,
icon_url: member.user.avatarURL() || undefined,
},
timestamp: new Date().toISOString()
}]
@@ -78,7 +78,7 @@ export = {
color: embedColor,
footer: {
text: interaction.guild!.name + " | " + devMessage,
icon_url: interaction.guild!.iconURL({ forceStatic: false }) || undefined,
icon_url: interaction.guild!.iconURL() || undefined,
}
}],
ephemeral: true,