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("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));
@ -1017,6 +1021,7 @@ public class Plan extends BaseClass{
@@ -1017,6 +1021,7 @@ public class Plan extends BaseClass{
@ -63,7 +63,7 @@ public class Locomotive extends Car implements Constants,Device{
@@ -63,7 +63,7 @@ public class Locomotive extends Car implements Constants,Device{
@ -71,7 +71,7 @@ public class Locomotive extends Car implements Constants,Device{
@@ -71,7 +71,7 @@ public class Locomotive extends Car implements Constants,Device{
@ -134,10 +134,10 @@ public class Locomotive extends Car implements Constants,Device{
@@ -134,10 +134,10 @@ public class Locomotive extends Car implements Constants,Device{