Restore three turbines and update controls

This commit is contained in:
Codex Agent
2025-11-22 18:22:24 +01:00
parent 2434034505
commit fef1d32fbe
5 changed files with 10 additions and 8 deletions

View File

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