From b54b8ec8ad3e6725f8a427757628bc3529a83cb8 Mon Sep 17 00:00:00 2001 From: Spythere Date: Sat, 28 Nov 2020 22:29:51 +0100 Subject: [PATCH] =?UTF-8?q?Zaktualizowano=20list=C4=99=20scenerii=20(1.3.2?= =?UTF-8?q?)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/data/stations.json | 2 +- src/store/store.ts | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) 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, }; }