Invert rod hotkeys and update instructions
This commit is contained in:
@@ -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)))
|
||||
|
||||
Reference in New Issue
Block a user