summaryrefslogtreecommitdiff
path: root/src/newgrf_station.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/newgrf_station.cpp')
-rw-r--r--src/newgrf_station.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/newgrf_station.cpp b/src/newgrf_station.cpp
index e341bd43f..921c1e128 100644
--- a/src/newgrf_station.cpp
+++ b/src/newgrf_station.cpp
@@ -173,9 +173,6 @@ void SetCustomStationSpec(StationSpec *statspec)
StationClass *station_class;
int i;
- /* If the station has already been allocated, don't reallocate it. */
- if (statspec->allocated) return;
-
assert(statspec->cls_id < STAT_CLASS_MAX);
station_class = &_station_classes[statspec->cls_id];
@@ -183,7 +180,6 @@ void SetCustomStationSpec(StationSpec *statspec)
station_class->spec = ReallocT(station_class->spec, station_class->stations);
station_class->spec[i] = statspec;
- statspec->allocated = true;
}
/**