Zaktualizowano listę scenerii

This commit is contained in:
2020-11-08 16:45:29 +01:00
parent 5681eb29bd
commit f3347731a2
2 changed files with 24 additions and 0 deletions
+23
View File
@@ -1957,5 +1957,28 @@
"default": false,
"nonPublic": false,
"stops": ["Pawonki"]
},
{
"stationName": "Czermin",
"stationURL": "https://td2.info.pl/scenerie/czermin/",
"stationLines": "",
"reqLevel": "6",
"supportersOnly": "NIE",
"signalType": "współczesna",
"controlType": "SCS",
"SBL": "TAK (szlaki Łk i Fw)",
"twoWayBlock": "",
"routes": {
"oneWay": {
"catenary": 2,
"noCatenary": 0
},
"twoWay": {
"catenary": 2,
"noCatenary": 0
}
},
"default": false,
"nonPublic": true
}
]
+1
View File
@@ -395,6 +395,7 @@ export default class Store extends VuexModule {
if (stopInfo.terminatesHere && stopInfo.confirmed) { stopStatus = "terminated"; stopLabel = "Skończył bieg" }
else if (!stopInfo.terminatesHere && stopInfo.confirmed) { stopStatus = "departed"; stopLabel = "Odprawiony" }
// else if (timetableData.currentStationName == station.stationName && stopInfo.beginsHere ) { stopStatus = "online"; stopLabel = "Podstawia się" }
else if (timetableData.currentStationName == station.stationName && !stopInfo.stopped) { stopStatus = "online"; stopLabel = "Na stacji" }
else if (timetableData.currentStationName == station.stationName && stopInfo.stopped) { stopStatus = "stopped"; stopLabel = "Postój" }
else if (timetableData.currentStationName != station.stationName) { stopStatus = "arriving"; stopLabel = "W drodze" }