diff options
author | celestar <celestar@openttd.org> | 2006-04-21 19:47:52 +0000 |
---|---|---|
committer | celestar <celestar@openttd.org> | 2006-04-21 19:47:52 +0000 |
commit | 46956354a9587bd674b864ea67593729aa37a660 (patch) | |
tree | 59dc0942547b2bc4523a6b30073cd2e69749acfb | |
parent | e3fb01a350fd58939fe83eaf2cbd01d4c1aacbe8 (diff) | |
download | openttd-46956354a9587bd674b864ea67593729aa37a660.tar.xz |
(svn r4505) -Fix (FS#94) Ships can now be used to set up feeders as well.
-rw-r--r-- | ship_cmd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ship_cmd.c b/ship_cmd.c index c76a39e4a..302f58018 100644 --- a/ship_cmd.c +++ b/ship_cmd.c @@ -707,7 +707,7 @@ static void ShipController(Vehicle *v) st = GetStation(v->current_order.station); if (st->facilities & FACIL_DOCK) { /* ugly, ugly workaround for problem with ships able to drop off cargo at wrong stations */ v->current_order.type = OT_LOADING; - v->current_order.flags &= OF_FULL_LOAD | OF_UNLOAD; + v->current_order.flags &= OF_FULL_LOAD | OF_UNLOAD | OF_TRANSFER; v->current_order.flags |= OF_NON_STOP; ShipArrivesAt(v, st); |