1
0
Fork 0

Fix #7433: don't use AirportSpec substitute if it's not set (#7435)

pull/7489/head
glx22 2019-03-30 22:12:25 +01:00 committed by PeterN
parent 0b340fd376
commit d3e9e8c2ce
1 changed files with 1 additions and 0 deletions

View File

@ -100,6 +100,7 @@ AirportSpec AirportSpec::specs[NUM_AIRPORTS]; ///< Airport specifications.
assert(type < lengthof(AirportSpec::specs));
const AirportSpec *as = &AirportSpec::specs[type];
if (type >= NEW_AIRPORT_OFFSET && !as->enabled) {
if (_airport_mngr.GetGRFID(type) == 0) return as;
byte subst_id = _airport_mngr.GetSubstituteID(type);
if (subst_id == AT_INVALID) return as;
as = &AirportSpec::specs[subst_id];