Comment out startGame call on manifest fetch failure

This commit is contained in:
Frederico Santos 2024-10-26 22:43:15 +01:00
parent 801b0a66f7
commit a9a73863e8
1 changed files with 1 additions and 1 deletions

View File

@ -103,7 +103,7 @@ fetch("/manifest.json")
game["manifest"] = jsonResponse.manifest; game["manifest"] = jsonResponse.manifest;
}).catch(() => { }).catch(() => {
// Manifest not found (likely local build) // Manifest not found (likely local build)
startGame(); // startGame();
}); });
export default game; export default game;