changeset 3610:b3d1c300d786 draft

(svn r4505) -Fix (FS#94) Ships can now be used to set up feeders as well.
author celestar <celestar@openttd.org>
date Fri, 21 Apr 2006 19:47:52 +0000
parents 3b100fe92840
children aeec8e5da030
files ship_cmd.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/ship_cmd.c
+++ b/ship_cmd.c
@@ -707,7 +707,7 @@
 							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);