Merge remote-tracking branch 'origin/main'

This commit is contained in:
2026-08-22 23:19:53 +02:00
4 changed files with 50 additions and 14 deletions
+1 -1
View File
@@ -469,7 +469,7 @@ export function App() {
if (!response.ok) { setStatus('OBJECTIVE COMPLETE · STORY ADVANCE UNAVAILABLE'); return }
const next = await response.json() as PlaythroughState
if (next.node?.kind === 'level' && next.node.levelSlug) window.location.assign(`/level/${encodeURIComponent(next.node.levelSlug)}`)
else window.location.assign('/')
else window.location.assign('/?resume=1') // resume straight into the next node, not the splash
} finally { setAdvancing(false) }
}