From 5edf071a29b94a07c7b64a0134e0e19649414f5a Mon Sep 17 00:00:00 2001 From: thororen <78185467+thororen1234@users.noreply.github.com> Date: Tue, 23 Jul 2024 04:56:53 -0400 Subject: [PATCH] Fix Equicord Image Quality --- src/components/VencordSettings/VencordTab.tsx | 2 +- src/equicordplugins/showBadgesInChat/index.tsx | 2 +- src/plugins/_api/badges/index.tsx | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/components/VencordSettings/VencordTab.tsx b/src/components/VencordSettings/VencordTab.tsx index 46b7f852..b2c8a59b 100644 --- a/src/components/VencordSettings/VencordTab.tsx +++ b/src/components/VencordSettings/VencordTab.tsx @@ -36,7 +36,7 @@ import { SettingsTab, wrapTab } from "./shared"; const cl = classNameFactory("vc-settings-"); const DEFAULT_DONATE_IMAGE = "https://cdn.discordapp.com/emojis/1026533090627174460.png"; -const SHIGGY_DONATE_IMAGE = "https://i.imgur.com/rJDRtUB.png"; +const SHIGGY_DONATE_IMAGE = "https://i.imgur.com/57ATLZu.png"; type KeysOfType = { [K in keyof Object]: Object[K] extends Type ? K : never; diff --git a/src/equicordplugins/showBadgesInChat/index.tsx b/src/equicordplugins/showBadgesInChat/index.tsx index d74d44dc..5aa7cec1 100644 --- a/src/equicordplugins/showBadgesInChat/index.tsx +++ b/src/equicordplugins/showBadgesInChat/index.tsx @@ -56,7 +56,7 @@ function CheckBadge({ badge, author }: { badge: string; author: User; }): JSX.El className={roleIconClassName} name="Equicord Contributor" size={20} - src={"https://i.imgur.com/rJDRtUB.png"} + src={"https://i.imgur.com/57ATLZu.png"} /> ) : null; diff --git a/src/plugins/_api/badges/index.tsx b/src/plugins/_api/badges/index.tsx index ff91cc52..a325a864 100644 --- a/src/plugins/_api/badges/index.tsx +++ b/src/plugins/_api/badges/index.tsx @@ -34,7 +34,7 @@ import { Forms, Toasts, UserStore } from "@webpack/common"; import { User } from "discord-types/general"; const CONTRIBUTOR_BADGE = "https://vencord.dev/assets/favicon.png"; -const EQUICORD_CONTRIBUTOR_BADGE = "https://i.imgur.com/rJDRtUB.png"; +const EQUICORD_CONTRIBUTOR_BADGE = "https://i.imgur.com/57ATLZu.png"; const SUNCORD_CONTRIBUTOR_BADGE = "https://raw.githubusercontent.com/verticalsync/Suncord/main/src/assets/icon.png"; const ContributorBadge: ProfileBadge = {