diff --git a/src/data/stations.json b/src/data/stations.json index 72cc72a..4626a13 100644 --- a/src/data/stations.json +++ b/src/data/stations.json @@ -1970,7 +1970,7 @@ "stationName": "Czermin", "stationURL": "https://td2.info.pl/scenerie/czermin/", "stationLines": "", - "reqLevel": "6", + "reqLevel": "8", "supportersOnly": "NIE", "signalType": "współczesna", "controlType": "SCS", diff --git a/src/store/store.ts b/src/store/store.ts index 7d674c2..5bbee59 100644 --- a/src/store/store.ts +++ b/src/store/store.ts @@ -113,6 +113,7 @@ export default class Store extends VuexModule { private stationList: Station[] = []; private trainList: Train[] = []; + private spawnList: { spawnName: string; spawnLength: number }[] = []; //GETTERS get getAllData() { @@ -122,7 +123,7 @@ export default class Store extends VuexModule { trainCount: this.trainCount, stationCount: this.stationCount, dataConnectionStatus: this.dataConnectionStatus, - timetableDataStatus: this.timetableLoaded + timetableDataStatus: this.timetableLoaded, }; }