From 76e2d2939a161c0e9878d087202a1da3cf7ad8bf Mon Sep 17 00:00:00 2001 From: celestar Date: Fri, 21 Apr 2006 19:47:52 +0000 Subject: [PATCH] (svn r4505) -Fix (FS#94) Ships can now be used to set up feeders as well. --- ship_cmd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ship_cmd.c b/ship_cmd.c index c76a39e4ab..302f58018c 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);