diff options
author | celestar <celestar@openttd.org> | 2006-05-19 13:44:32 +0000 |
---|---|---|
committer | celestar <celestar@openttd.org> | 2006-05-19 13:44:32 +0000 |
commit | 09ba9710fcf60d31882d54e9d522e27ef891c280 (patch) | |
tree | 697b381bd138859d742b901d03712f6c34290654 | |
parent | 586336dfa7696781f48fa3420bbfaae63142b7a3 (diff) | |
download | openttd-09ba9710fcf60d31882d54e9d522e27ef891c280.tar.xz |
(svn r4914) -Fix (FS#180) Aircraft can now serve as feeders
-rw-r--r-- | aircraft_cmd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/aircraft_cmd.c b/aircraft_cmd.c index e52618210..d8794b0b2 100644 --- a/aircraft_cmd.c +++ b/aircraft_cmd.c @@ -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); |