diff --git a/src/equicordplugins/globalBadges/index.tsx b/src/equicordplugins/globalBadges/index.tsx index c566f4bf..2e25b863 100644 --- a/src/equicordplugins/globalBadges/index.tsx +++ b/src/equicordplugins/globalBadges/index.tsx @@ -33,7 +33,8 @@ interface BadgeCache { expires: number; } -const API_URL = "https://clientmodbadges-api.herokuapp.com/"; +// const API_URL = "https://clientmodbadges-api.herokuapp.com/"; +const API_URL = "https://globalbadges.suncord.rest/"; const cache = new Map(); const EXPIRES = 1000 * 60 * 15; @@ -75,6 +76,7 @@ const GlobalBadges = ({ user }: { user: User; }) => { Object.keys(badges).forEach(mod => { if (mod.toLowerCase() === "vencord") return; + if (mod.toLowerCase() === "equicord") return; badges[mod].forEach(badge => { if (typeof badge === "string") { const fullNames = { "hunter": "Bug Hunter", "early": "Early User" };