Fix #10665: CheckEngines should ignore wagons when determining available vehicles at the start date. (#10673)

pull/544/head
aeonofdiscord 1 year ago committed by GitHub
parent 7088f5b7c7
commit 36f5fe19fe
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -1246,6 +1246,9 @@ void CheckEngines()
for (const Engine *e : Engine::Iterate()) {
if (!e->IsEnabled()) continue;
/* Don't consider train wagons, we need a powered engine available. */
if (e->type == VEH_TRAIN && e->u.rail.railveh_type == RAILVEH_WAGON) continue;
/* We have an available engine... yay! */
if ((e->flags & ENGINE_AVAILABLE) != 0 && e->company_avail != 0) return;

Loading…
Cancel
Save