working on function mapping

This commit is contained in:
Stephan Richter
2021-06-17 11:11:57 +02:00
parent 35bdb37a8f
commit ab8a915380
3 changed files with 4 additions and 2 deletions

View File

@@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>de.srsoftware</groupId>
<artifactId>web4rail</artifactId>
<version>1.4.38</version>
<version>1.4.39</version>
<name>Web4Rail</name>
<packaging>jar</packaging>
<description>Java Model Railway Control</description>

View File

@@ -107,6 +107,7 @@ Counterpart : Gegenstück
couple : kuppeln
Couple first parked train : ersten geparkten Zug kuppeln
Couple last parked train : letzten geparkten Zug kuppeln
Coupler : Kupplung
CoupleTrain : Zug kuppeln
Create action : Aktion erzeugen
Current location : Aufenthaltsort
@@ -190,6 +191,7 @@ Hold : an lassen
if ({}) : falls ({})
If car of train\: inspect car number : Falls Fahrzeug aus Zug: Untersuche Fahrzeug Nummer
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. : Falls aktiviert, wird die Strecke anhand von Zug- und Kachel-Länge hinter dem Zug freigegeben, Falls deaktiviert wird die Strecke hinter dem Zug erst bei Abschluss der Route freigegeben.
Interior light : Innenbeleuchtung
internal contacts : interne Kontakte
Interval : Intervall
inverted : invertiert

View File

@@ -259,7 +259,7 @@ public class Locomotive extends Car implements Constants{
}
private static String functionName(int index,String key) {
return "function["+index+"]["+key+"]";
return "functions/"+index+"/"+key;
}
@Override