From f200ffa90c6f3835468d5cc2ae79499b9058bd7b Mon Sep 17 00:00:00 2001 From: michi_cc Date: Fri, 4 Nov 2011 00:38:51 +0000 Subject: (svn r23087) -Feature: Auto-refitting of vehicles during loading at a station when the vehicle allows it. --- src/autoreplace_cmd.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/autoreplace_cmd.cpp') diff --git a/src/autoreplace_cmd.cpp b/src/autoreplace_cmd.cpp index 67387130f..39e294f6c 100644 --- a/src/autoreplace_cmd.cpp +++ b/src/autoreplace_cmd.cpp @@ -142,7 +142,7 @@ static bool VerifyAutoreplaceRefitForOrders(const Vehicle *v, EngineID engine_ty const Order *o; const Vehicle *u = (v->type == VEH_TRAIN) ? v->First() : v; FOR_VEHICLE_ORDERS(u, o) { - if (!o->IsRefit()) continue; + if (!o->IsRefit() || o->IsAutoRefit()) continue; CargoID cargo_type = o->GetRefitCargo(); if (!HasBit(union_refit_mask_a, cargo_type)) continue; -- cgit v1.2.3-54-g00ecf