Skip to content

Commit d668b6e

Browse files
committed
Fix #13: respect the "retain control point on IVA" game setting
1 parent 867e0fc commit d668b6e

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

ProbeControlRoom/ProbeControlRoom.cs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -377,7 +377,10 @@ public bool startIVA()
377377
aPart.protoModuleCrew.Clear();
378378

379379
//Make the PCR part the focused part
380-
aPart.MakeReferencePart();
380+
if (!GameSettings.IVA_RETAIN_CONTROL_POINT)
381+
{
382+
aPart.MakeReferencePart();
383+
}
381384

382385
ProbeControlRoomUtils.Logger.debug("startIVA() - fire up IVA");
383386

0 commit comments

Comments
 (0)