From 773e2417355d5eb54f436b09e63214f50cb9eaab Mon Sep 17 00:00:00 2001 From: Flashfyre Date: Sat, 9 Mar 2024 16:09:06 -0500 Subject: [PATCH] Allow empty save data on local mode --- src/phases.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/phases.ts b/src/phases.ts index c7f0e97e583..f2186c4adfe 100644 --- a/src/phases.ts +++ b/src/phases.ts @@ -100,7 +100,7 @@ export class LoginPhase extends Phase { return null; } else { this.scene.gameData.loadSystem().then(success => { - if (success) + if (success || bypassLogin) this.end(); else { this.scene.ui.setMode(Mode.MESSAGE);