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

@@ -76,7 +76,7 @@ export = {
{
author: {
name: mod.username,
icon_url: mod.avatarURL({ forceStatic: false }) || undefined,
icon_url: mod.avatarURL() || undefined,
},
title: "Member Unbanned",
description: `
@@ -86,7 +86,7 @@ export = {
`,
color: embedColor,
thumbnail: {
url: mod.avatarURL({ forceStatic: false }) || "",
url: mod.avatarURL() || "",
},
footer: {
text: "ID: " + user!.id,
@@ -107,7 +107,7 @@ export = {
"**Moderator:** " + userMention(mod.id),
color: embedColor,
thumbnail: {
url: user!.avatarURL({ forceStatic: false }) || "",
url: user!.avatarURL() || "",
},
footer: {
icon_url: interaction.guild!.iconURL({ forceStatic: false, }) || undefined,