summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoryexo <yexo@openttd.org>2010-08-17 22:33:27 +0000
committeryexo <yexo@openttd.org>2010-08-17 22:33:27 +0000
commitbf29e5d860d2dd7c1e3d3105c4edc14a1a448238 (patch)
treea7d2f066d5f925d22c4550a01b757dcb9699dc28
parentf9a55b7439a505167699223fdb51485113501c24 (diff)
downloadopenttd-bf29e5d860d2dd7c1e3d3105c4edc14a1a448238.tar.xz
(svn r20530) -Cleanup (r13507): p2 bit 0 for CmdBUildRailVehicle is no longer valid so don't use it
-rw-r--r--src/vehicle_cmd.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/vehicle_cmd.cpp b/src/vehicle_cmd.cpp
index 2b8ca00fb..e63609434 100644
--- a/src/vehicle_cmd.cpp
+++ b/src/vehicle_cmd.cpp
@@ -417,7 +417,6 @@ static void CloneVehicleName(const Vehicle *src, Vehicle *dst)
CommandCost CmdCloneVehicle(TileIndex tile, DoCommandFlag flags, uint32 p1, uint32 p2, const char *text)
{
CommandCost total_cost(EXPENSES_NEW_VEHICLES);
- uint32 build_argument = 2;
Vehicle *v = Vehicle::GetIfValid(p1);
if (v == NULL || !v->IsPrimaryVehicle()) return CMD_ERROR;
@@ -468,8 +467,7 @@ CommandCost CmdCloneVehicle(TileIndex tile, DoCommandFlag flags, uint32 p1, uint
DoCommandFlag build_flags = flags;
if ((flags & DC_EXEC) && !v->IsPrimaryVehicle()) build_flags |= DC_AUTOREPLACE;
- CommandCost cost = DoCommand(tile, v->engine_type, build_argument, build_flags, GetCmdBuildVeh(v));
- build_argument = 3; // ensure that we only assign a number to the first engine
+ CommandCost cost = DoCommand(tile, v->engine_type, 2, build_flags, GetCmdBuildVeh(v));
if (cost.Failed()) {
/* Can't build a part, then sell the stuff we already made; clear up the mess */