diff --git a/src/newgrf_station.cpp b/src/newgrf_station.cpp index 52c7c1edb2..26361f3fda 100644 --- a/src/newgrf_station.cpp +++ b/src/newgrf_station.cpp @@ -525,8 +525,8 @@ uint32 Station::GetNewGRFVariable(const ResolverObject *object, byte variable, b case 0x8A: return this->had_vehicle_of_type; case 0xF1: return this->airport_type; - case 0xF2: return this->truck_stops->status; - case 0xF3: return this->bus_stops->status; + case 0xF2: return (this->truck_stops != NULL) ? this->truck_stops->status : 0; + case 0xF3: return (this->bus_stops != NULL) ? this->bus_stops->status : 0; case 0xF6: return this->airport_flags; case 0xF7: return GB(this->airport_flags, 8, 8); }