implemented shunting trains

This commit is contained in:
Stephan Richter
2021-01-15 18:15:14 +01:00
parent 246d6c4e9f
commit 22dfd0512a
10 changed files with 76 additions and 19 deletions

View File

@@ -68,7 +68,7 @@ public class DetermineTrainInBlock extends Action {
}
public String toString() {
return isSet(block) ? t("Determine, which train is in {}",block) : t("[Click here to select block!]");
return isSet(block) ? t("Determine, which train is in {}",block) : "["+t("Click here to select block!")+"]";
};
@Override