From a9a73863e89caf979f28c4e97be61ff160a0116a Mon Sep 17 00:00:00 2001 From: Frederico Santos Date: Sat, 26 Oct 2024 22:43:15 +0100 Subject: [PATCH] Comment out startGame call on manifest fetch failure --- src/main.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.ts b/src/main.ts index 8a69d3f1b72..d9472fce50c 100644 --- a/src/main.ts +++ b/src/main.ts @@ -103,7 +103,7 @@ fetch("/manifest.json") game["manifest"] = jsonResponse.manifest; }).catch(() => { // Manifest not found (likely local build) - startGame(); + // startGame(); }); export default game;