From dcfd3acc8f15d62afa45a175404a9d4febf7b177 Mon Sep 17 00:00:00 2001 From: Darkvater Date: Tue, 2 May 2006 13:37:36 +0000 Subject: [PATCH] (svn r4676) - Backport from trunk (r4505): Fix: 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 904ffafa3a..c8c1acab49 100644 --- a/ship_cmd.c +++ b/ship_cmd.c @@ -714,7 +714,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);