File diff r9330:478a38d542ef → r9331:c880f7d4ef98
src/ai/default/default.cpp
Show inline comments
 
@@ -3446,7 +3446,8 @@ static int AiFindBestDefaultAirportBlock
 
		/* do not build small airport if we have large available and we are not building heli route */
 
		uint valid = GetValidAirports();
 
		for (uint i = 0; (p = _airport_default_block_data[i]) != NULL; i++) {
 
			if (HasBit(valid, p->attr) && !(GetAirport(p->attr)->flags & AirportFTAClass::SHORT_STRIP)) {
 
			uint flags = GetAirport(p->attr)->flags;
 
			if (HasBit(valid, p->attr) && (flags & AirportFTAClass::AIRPLANES) && !(flags & AirportFTAClass::SHORT_STRIP)) {
 
				no_small = true;
 
				break;
 
			}