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

@@ -64,7 +64,7 @@ export = {
embeds: [{
author: {
name: mod.username,
icon_url: mod.avatarURL({ forceStatic: false }) || undefined,
icon_url: mod.avatarURL() || undefined,
},
title: "Waiting List - Remove User",
description: `
@@ -74,10 +74,10 @@ export = {
`,
color: embedColor,
thumbnail: {
url: mod.avatarURL({ forceStatic: false }) || "",
url: mod.avatarURL() || "",
},
footer: {
icon_url: user.avatarURL({ forceStatic: false }) || undefined,
icon_url: user.avatarURL() || undefined,
text: "ID: " + user.id,
},
timestamp: new Date().toISOString()
@@ -94,7 +94,7 @@ export = {
color: embedColor,
footer: {
text: interaction.guild!.name + " | " + devMessage,
icon_url: interaction.guild!.iconURL({ forceStatic: false }) || undefined,
icon_url: interaction.guild!.iconURL() || undefined,
}
},
],