From 34176dc54f8142f335acde18b50fe029e79214e1 Mon Sep 17 00:00:00 2001 From: otivm Date: Sat, 25 Apr 2026 20:22:18 +0000 Subject: [PATCH] Fix INITIAL_STATE formatting collapsed by Claude Code --- src/constants.js | 23 ++++++++++++++++++++++- 1 file changed, 22 insertions(+), 1 deletion(-) diff --git a/src/constants.js b/src/constants.js index 3e91d7e..16c9be5 100644 --- a/src/constants.js +++ b/src/constants.js @@ -155,4 +155,25 @@ export const JOURNAL = { ], } -export const INITIAL_STATE = { den: 50, aut: 0, dispatches: 0, chapter: 1, route_dispatches: {}, journal_seen: [], // active_dispatch: records the in-progress dispatch for position tracking and // real-time duration (OTIVM-IV). null when no dispatch is running. active_dispatch: null, // events: append-only record of meaningful game events. // Each entry: { type, route_id, timestamp_utc } // Types: 'dispatch_start', 'dispatch_complete', 'otium', 'chapter_advance', 'journal_unlock' // This is the sequencing substrate for OTIVM-IX attestation. events: [], token: null, created_at: null,}export const OTIUM_DURATION_MS = 8000export const OTIUM_BASE_AUT = 1export const MAX_CONCURRENT_PLAYERS = 128 +export const INITIAL_STATE = { + den: 50, + aut: 0, + dispatches: 0, + chapter: 1, + route_dispatches: {}, + journal_seen: [], + // active_dispatch: records the in-progress dispatch for position tracking and + // real-time duration (OTIVM-IV). null when no dispatch is running. + active_dispatch: null, + // events: append-only record of meaningful game events. + // Each entry: { type, route_id, timestamp_utc } + // Types: 'dispatch_start', 'dispatch_complete', 'otium', 'chapter_advance', 'journal_unlock' + // This is the sequencing substrate for OTIVM-IX attestation. + events: [], + token: null, + created_at: null, +} + +export const OTIUM_DURATION_MS = 8000 +export const OTIUM_BASE_AUT = 1 +export const MAX_CONCURRENT_PLAYERS = 128