diff --git a/docs/project-structure.txt b/docs/project-structure.txt
index 3e6c656..1d8dee0 100644
--- a/docs/project-structure.txt
+++ b/docs/project-structure.txt
@@ -259,6 +259,7 @@ Mana-Loop/
│ │ ├── stores/
│ │ │ ├── attunementStore.ts
│ │ │ ├── combat-actions.ts
+│ │ │ ├── combat-state.types.ts
│ │ │ ├── combatStore.ts
│ │ │ ├── craftingStore.ts
│ │ │ ├── discipline-slice.ts
diff --git a/src/components/game/debug/GameStateDebug.tsx b/src/components/game/debug/GameStateDebug.tsx
index 934f90a..2a8b983 100644
--- a/src/components/game/debug/GameStateDebug.tsx
+++ b/src/components/game/debug/GameStateDebug.tsx
@@ -31,7 +31,6 @@ export function GameStateDebug() {
const resetGame = useGameStore((s) => s.resetGame);
const debugSetFloor = useCombatStore((s) => s.debugSetFloor);
const resetFloorHP = useCombatStore((s) => s.resetFloorHP);
- const debugSetTime = useCombatStore((s) => s.debugSetTime);
const handleReset = () => {
if (confirmReset) {
@@ -187,13 +186,13 @@ export function GameStateDebug() {
-