We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fc73ac8 commit 4b70d86Copy full SHA for 4b70d86
Source/Orts.Simulation/Simulation/Signalling/SignalObject.cs
@@ -2522,6 +2522,9 @@ private void propagateRequest()
2522
// no. of next signals to clear : as passed on -1 if signal has normal clear ahead
2523
// if passed on < 0, use this signals num to clear
2524
2525
+ // Do not propagate the request in explorer mode, as it is handled elsewhere
2526
+ if (enabledTrain != null && enabledTrain.Train.ControlMode == Train.TRAIN_CONTROL.EXPLORER) return;
2527
+
2528
// sections not available
2529
bool validPropagationRequest = true;
2530
if (internalBlockState > InternalBlockstate.Reservable)
0 commit comments