Handle heat-sink loss and update turbine controls

This commit is contained in:
Codex Agent
2025-11-22 18:20:21 +01:00
parent 8d9b57f86d
commit 2434034505
6 changed files with 46 additions and 17 deletions

View File

@@ -56,7 +56,7 @@ class HealthMonitor:
"primary_pump": ComponentHealth("primary_pump"),
"secondary_pump": ComponentHealth("secondary_pump"),
}
for idx in range(3):
for idx in range(2):
name = f"turbine_{idx + 1}"
self.components[name] = ComponentHealth(name)
self.failure_log: list[str] = []