From 7ee8b29889e19ba44d73f5d52665554f1a9cf675 Mon Sep 17 00:00:00 2001 From: thororen1234 <78185467+thororen1234@users.noreply.github.com> Date: Wed, 14 May 2025 15:58:32 -0400 Subject: [PATCH] Misc Fix --- src/Vencord.ts | 2 +- src/main/index.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Vencord.ts b/src/Vencord.ts index 927db413..b43564a2 100644 --- a/src/Vencord.ts +++ b/src/Vencord.ts @@ -163,7 +163,7 @@ async function init() { "Webpack has finished initialising, but some patches haven't been applied yet.", "This might be expected since some Modules are lazy loaded, but please verify", "that all plugins are working as intended.", - "You are seeing this warning because this is a Development build of Vencord.", + "You are seeing this warning because this is a Development build of Equicord.", "\nThe following patches have not been applied:", "\n\n" + pendingPatches.map(p => `${p.plugin}: ${p.find}`).join("\n") ); diff --git a/src/main/index.ts b/src/main/index.ts index 760233cc..ae3f9d2f 100644 --- a/src/main/index.ts +++ b/src/main/index.ts @@ -24,7 +24,7 @@ import { RendererSettings } from "./settings"; import { IS_VANILLA, THEMES_DIR } from "./utils/constants"; import { installExt } from "./utils/extensions"; -if (IS_VESKTOP || !IS_VANILLA) { +if (IS_VESKTOP || IS_EQUIBOP || !IS_VANILLA) { app.whenReady().then(() => { // Source Maps! Maybe there's a better way but since the renderer is executed // from a string I don't think any other form of sourcemaps would work