formInputs.add(t("Speed step"),newInput(SPEED_STEP,Train.defaultSpeedStep).attr("title",t("Speeds are always increadsed/decreased by this value")));
formInputs.add(t("Lower speed limit"),newInput(FINAL_SPEED,Train.defaultEndSpeed).attr("title",t("Final speed after breaking, before halting")));
formInputs.add(t("Speed step"),newInput(SPEED_STEP,Train.defaultSpeedStep).attr("title",t("Speeds are always increadsed/decreased by this value")).addTo(newTag("span")).content(NBSP+Plan.speedUnit));
formInputs.add(t("Lower speed limit"),newInput(FINAL_SPEED,Train.defaultEndSpeed).attr("title",t("Final speed after breaking, before halting")).addTo(newTag("span")).content(NBSP+Plan.speedUnit));
formInputs.add(t("Free tiles behind train"),newCheckbox(FREE_BEHIND_TRAIN,t("If checked, tiles behind the train are freed according to the length of the train and the tiles. If it is unchecked, tiles will not get free before route is finished."),Route.freeBehindTrain));
formInputs.add(t("Allow editing JSON of action lists"),newCheckbox(ALLOW_JSON_EDIT,t("Do you know, what you are doing?"),allowJsonEdit));
@ -1064,10 +1069,13 @@ public class Plan extends BaseClass{
@@ -1064,10 +1069,13 @@ public class Plan extends BaseClass{
@ -51,6 +51,9 @@ public class Car extends BaseClass implements Comparable<Car>{
@@ -51,6 +51,9 @@ public class Car extends BaseClass implements Comparable<Car>{
@ -222,7 +225,7 @@ public class Car extends BaseClass implements Comparable<Car>{
@@ -222,7 +225,7 @@ public class Car extends BaseClass implements Comparable<Car>{