Invert rod hotkeys and update instructions

This commit is contained in:
Codex Agent
2025-11-22 18:30:18 +01:00
parent c9cd669ca4
commit ecc193f61b
2 changed files with 5 additions and 3 deletions

View File

@@ -132,9 +132,11 @@ class ReactorDashboard:
idx = ch - ord("1")
self._toggle_turbine_unit(idx)
elif ch in (ord("+"), ord("=")):
self._queue_command(ReactorCommand(rod_position=self._clamped_rod(-0.05)))
elif ch == ord("-"):
# Insert rods (increase fraction)
self._queue_command(ReactorCommand(rod_position=self._clamped_rod(0.05)))
elif ch == ord("-"):
# Withdraw rods (decrease fraction)
self._queue_command(ReactorCommand(rod_position=self._clamped_rod(-0.05)))
elif ch == ord("["):
demand = self._current_demand() - 50.0
self._queue_command(ReactorCommand(consumer_demand=max(0.0, demand)))