File tree Expand file tree Collapse file tree 2 files changed +2
-0
lines changed
Source/Contrib/ContentManager/Models Expand file tree Collapse file tree 2 files changed +2
-0
lines changed Original file line number Diff line number Diff line change @@ -100,6 +100,7 @@ public Car(Content content)
100100 // this is not always correct as TrainCar uses the WheelAxles array for the count; that is too complex to do here
101101 if ( SubType . Equals ( "Steam" ) && NumDriveAxles >= ( NumDriveAxles + NumIdleAxles ) ) { NumDriveAxles /= 2 ; }
102102
103+ // see TrainCar.UpdateTrainDerailmentRisk(), ~ line 1609
103104 NumAllAxles = NumDriveAxles + NumIdleAxles ;
104105
105106 // see TrainCar.UpdateTrainDerailmentRisk()
Original file line number Diff line number Diff line change @@ -114,6 +114,7 @@ public Consist(Content content)
114114 // this is not always correct as TrainCar uses the WheelAxles array for the count; that is too complex to do here
115115 if ( subType . Equals ( "Steam" ) && numDriveAxles >= ( numDriveAxles + numIdleAxles ) ) { numDriveAxles /= 2 ; }
116116
117+ // see TrainCar.UpdateTrainDerailmentRisk(), ~ line 1609
117118 numAllAxles = numDriveAxles + numIdleAxles ;
118119
119120 // exclude legacy EOT from total axle count
You can’t perform that action at this time.
0 commit comments