Fix: Runway too short for large aircraft message should not depend on plane crashes setting. (#7325)

This commit is contained in:
PeterN 2019-03-04 19:00:11 +00:00 committed by GitHub
parent 585957b226
commit 7f00a420cb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1798,7 +1798,6 @@ void CheckOrders(const Vehicle *v)
} else if (v->type == VEH_AIRCRAFT &&
(AircraftVehInfo(v->engine_type)->subtype & AIR_FAST) &&
(st->airport.GetFTA()->flags & AirportFTAClass::SHORT_STRIP) &&
_settings_game.vehicle.plane_crashes != 0 &&
!_cheats.no_jetcrash.value &&
message == INVALID_STRING_ID) {
message = STR_NEWS_PLANE_USES_TOO_SHORT_RUNWAY;