diff options
author | bjarni <bjarni@openttd.org> | 2006-10-05 08:39:16 +0000 |
---|---|---|
committer | bjarni <bjarni@openttd.org> | 2006-10-05 08:39:16 +0000 |
commit | 16271dfaaccddafd8bd349e6345378417823a87e (patch) | |
tree | 47a5c2f1fd0cee5c8019e32937cccdbaca41f661 | |
parent | 55c7840710742ee3caebded16fadc3700ad65e0c (diff) | |
download | openttd-16271dfaaccddafd8bd349e6345378417823a87e.tar.xz |
(svn r6648) -Codechange: simplified CmdDepotMassAutoReplace() by changing a switch-case into using a function, that was added in r6647
-rw-r--r-- | vehicle.c | 5 |
1 files changed, 1 insertions, 4 deletions
@@ -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; |