(svn r4914) -Fix (FS#180) Aircraft can now serve as feeders

This commit is contained in:
celestar 2006-05-19 13:44:32 +00:00
parent 486e207ea0
commit 94ef21bd2d
1 changed files with 1 additions and 1 deletions

View File

@ -1253,7 +1253,7 @@ static void AircraftEntersTerminal(Vehicle *v)
if (old_order.type == OT_GOTO_STATION &&
v->current_order.station == v->last_station_visited) {
v->current_order.flags =
(old_order.flags & (OF_FULL_LOAD | OF_UNLOAD)) | OF_NON_STOP;
(old_order.flags & (OF_FULL_LOAD | OF_UNLOAD | OF_TRANSFER)) | OF_NON_STOP;
}
SET_EXPENSES_TYPE(EXPENSES_AIRCRAFT_INC);