Skip to content

Commit

Permalink
Correct typing error
Browse files Browse the repository at this point in the history
  • Loading branch information
peternewell committed May 19, 2023
1 parent 86b0c1e commit 366c96e
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -1136,7 +1136,7 @@ public virtual void Parse(string lowercasetoken, STFReader stf)
case "wagon(ortsbrakeshoefriction": BrakeShoeFrictionFactor = new Interpolator(stf); break;
case "wagon(maxhandbrakeforce": InitialMaxHandbrakeForceN = stf.ReadFloatBlock(STFReader.UNITS.Force, null); break;
case "wagon(maxbrakeforce": InitialMaxBrakeForceN = stf.ReadFloatBlock(STFReader.UNITS.Force, null); break;
case "wagon(maxbrakeshoebrakeforce": MaxBrakeShoeForceN = stf.ReadFloatBlock(STFReader.UNITS.Force, null); break;
case "wagon(ortsmaxbrakeshoeforce": MaxBrakeShoeForceN = stf.ReadFloatBlock(STFReader.UNITS.Force, null); break;
case "wagon(ortswheelbrakeslideprotection":
// stf.MustMatch("(");
var brakeslideprotection = stf.ReadFloatBlock(STFReader.UNITS.None, null);
Expand Down

0 comments on commit 366c96e

Please sign in to comment.