diff --git a/docs/circular-deps.txt b/docs/circular-deps.txt index 2931884..2cb0f47 100644 --- a/docs/circular-deps.txt +++ b/docs/circular-deps.txt @@ -1,5 +1,5 @@ # Circular Dependencies -Generated: 2026-06-10T07:56:31.400Z +Generated: 2026-06-10T08:00:19.784Z Found: 2 circular chain(s) — these MUST be fixed before modifying involved files. 1. 1) stores/golem-combat-actions.ts > stores/golem-combat-helpers.ts diff --git a/docs/dependency-graph.json b/docs/dependency-graph.json index c181138..8fc4f54 100644 --- a/docs/dependency-graph.json +++ b/docs/dependency-graph.json @@ -1,6 +1,6 @@ { "_meta": { - "generated": "2026-06-10T07:56:29.402Z", + "generated": "2026-06-10T08:00:17.492Z", "description": "Import dependency graph for src/lib/game. Keys are files, values are arrays of files they import.", "usage": "To find what a file affects, search for its path in the VALUES. To find what a file depends on, look at its KEY entry." }, diff --git a/src/app/components/GameOverScreen.tsx b/src/app/components/GameOverScreen.tsx index 36ff1af..73ef777 100644 --- a/src/app/components/GameOverScreen.tsx +++ b/src/app/components/GameOverScreen.tsx @@ -2,7 +2,7 @@ import { Button } from '@/components/ui/button'; import { Card, CardContent, CardHeader, CardTitle } from '@/components/ui/card'; -import { fmt } from '@/lib/game/stores'; +import { fmt, formatHour } from '@/lib/game/stores'; import { useGameStore } from '@/lib/game/stores'; interface GameOverScreenProps { @@ -40,7 +40,7 @@ export function GameOverScreen({ day, hour, insightGained, totalInsight }: GameO
Day Reached
-
{hour}
+
{formatHour(hour)}
Hour
diff --git a/src/lib/game/stores/index.ts b/src/lib/game/stores/index.ts index e387591..c9b43bf 100755 --- a/src/lib/game/stores/index.ts +++ b/src/lib/game/stores/index.ts @@ -32,6 +32,7 @@ export type { GameCoordinatorStore } from './gameStore'; export { fmt, fmtDec, + formatHour, getFloorMaxHP, getFloorElement, getFloorElements,