fix: remove duplicate activity log messages after Spire exit
Build and Publish Mana Loop Docker Image / build-and-publish (push) Failing after 1m1s

This commit is contained in:
2026-06-11 12:10:35 +02:00
parent 1dce061cdd
commit b15dde26b3
4 changed files with 2 additions and 5 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
# Circular Dependencies # Circular Dependencies
Generated: 2026-06-11T09:37:23.110Z Generated: 2026-06-11T09:55:02.653Z
Found: 4 circular chain(s) — these MUST be fixed before modifying involved files. Found: 4 circular chain(s) — these MUST be fixed before modifying involved files.
1. 1) data/guardian-encounters.ts > data/guardian-procedural.ts 1. 1) data/guardian-encounters.ts > data/guardian-procedural.ts
+1 -1
View File
@@ -1,6 +1,6 @@
{ {
"_meta": { "_meta": {
"generated": "2026-06-11T09:37:21.146Z", "generated": "2026-06-11T09:55:00.412Z",
"description": "Import dependency graph for src/lib/game. Keys are files, values are arrays of files they import.", "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." "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."
}, },
@@ -124,7 +124,6 @@ export function SpireCombatPage() {
const handleExitSpire = () => { const handleExitSpire = () => {
exitSpireMode(); exitSpireMode();
addActivityLog('floor_transition', '🚪 Exited the Spire.');
}; };
return ( return (
@@ -237,8 +237,6 @@ export function onEnterRoomDescend(get: GetFn, set: SetFn): void {
} }
} }
} else { } else {
get().addActivityLog('floor_transition',
`Floor ${s.currentFloor} Room ${s.currentRoomIndex + 1} is clear — moving on`);
advanceRoomOrFloor(get, set); advanceRoomOrFloor(get, set);
} }
} }