aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/patcher.ts4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/patcher.ts b/src/patcher.ts
index d9eb794..82fc233 100644
--- a/src/patcher.ts
+++ b/src/patcher.ts
@@ -76,7 +76,9 @@ if (!process.argv.includes("--vanilla")) {
const original = options.webPreferences.preload;
options.webPreferences.preload = join(__dirname, "preload.js");
options.webPreferences.sandbox = false;
- options.frame = !settings.frameless;
+ if (settings.frameless) {
+ options.frame = false;
+ }
process.env.DISCORD_PRELOAD = original;