mirror of
https://github.com/Spythere/stacjownik.git
synced 2026-05-03 21:38:13 +00:00
Aktualizacja tłumaczeń EN
This commit is contained in:
@@ -47,8 +47,9 @@ export default interface Station {
|
||||
stops: string[] | null;
|
||||
|
||||
online: boolean;
|
||||
occupiedTo: string;
|
||||
// occupiedTo: string;
|
||||
statusTimestamp: number;
|
||||
statusID: string;
|
||||
|
||||
stationTrains: Train[];
|
||||
scheduledTrains: ScheduledTrain[];
|
||||
|
||||
@@ -36,7 +36,7 @@ export default class StationFilterManager {
|
||||
.filter(station => {
|
||||
if ((station.nonPublic || !station.reqLevel) && this.filters['nonPublic']) return false;
|
||||
|
||||
if (station.online && station.occupiedTo == 'KOŃCZY' && this.filters['ending']) return false;
|
||||
if (station.online && station.statusID == 'ending' && this.filters['ending']) return false;
|
||||
|
||||
if (station.online && this.filters['occupied']) return false;
|
||||
if (!station.online && this.filters['free']) return false;
|
||||
|
||||
Reference in New Issue
Block a user