From dae0f79eaa334c6ec703c09ba3e39969d51a1c76 Mon Sep 17 00:00:00 2001 From: bjarni Date: Thu, 5 Oct 2006 08:39:16 +0000 Subject: [PATCH] (svn r6648) -Codechange: simplified CmdDepotMassAutoReplace() by changing a switch-case into using a function, that was added in r6647 --- vehicle.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/vehicle.c b/vehicle.c index 44c7221a8c..a5bf75597b 100644 --- a/vehicle.c +++ b/vehicle.c @@ -1720,10 +1720,7 @@ int32 CmdDepotMassAutoReplace(TileIndex tile, uint32 flags, uint32 p1, uint32 p2 int32 ret; /* Ensure that the vehicle completely in the depot */ - if ((vehicle_type == VEH_Train && !CheckTrainInDepot(v, false)) || - (vehicle_type == VEH_Road && !IsRoadVehInDepot(v) ) || - (vehicle_type == VEH_Ship && !IsShipInDepot(v) ) || - (vehicle_type == VEH_Aircraft && !IsAircraftInHangar(v)) ) continue; + if (!IsVehicleInDepot(v)) continue; x = v->x_pos; y = v->y_pos;