Skip to content

Commit

Permalink
Update TrainCarOperationsWebpage.cs
Browse files Browse the repository at this point in the history
Electric locomotiv power status wrong, red when on, green when off --> reversed
  • Loading branch information
sweiland-openrails committed Nov 26, 2023
1 parent 7fbe46c commit 753b622
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -1020,10 +1020,10 @@ private void fillStatusPower(int carPosition)
filename = "TrainOperationsPowerChanging32.png";
break;
case CircuitBreakerState.Open:
filename = "TrainOperationsPowerOn32.png";
filename = "TrainOperationsPowerOff32.png";
break;
case CircuitBreakerState.Closed:
filename = "TrainOperationsPowerOff32.png";
filename = "TrainOperationsPowerOn32.png";
break;
}
}
Expand Down

0 comments on commit 753b622

Please sign in to comment.