(svn r4676) - Backport from trunk (r4505): 0.4
authorDarkvater
Tue, 02 May 2006 13:37:36 +0000
branch0.4
changeset 9990 2a5460a73917
parent 9989 56cc28c68fb6
child 9991 6512418e7678
(svn r4676) - Backport from trunk (r4505):
Fix: Ships can now be used to set up feeders as well.
ship_cmd.c
--- a/ship_cmd.c	Tue May 02 13:36:38 2006 +0000
+++ b/ship_cmd.c	Tue May 02 13:37:36 2006 +0000
@@ -714,7 +714,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);