diff --git a/src/App.tsx b/src/App.tsx index a5650cf..28bd1be 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -458,7 +458,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) } }