File diff r26089:2283e9229bb0 → r26090:5a592dbf1c28
src/tree_cmd.cpp
Show inline comments
 
@@ -460,7 +460,7 @@ CommandCost CmdPlantTree(TileIndex tile,
 
					switch (GetRawClearGround(current_tile)) {
 
						case CLEAR_FIELDS:
 
						case CLEAR_ROCKS: {
 
							CommandCost ret = DoCommand(current_tile, 0, 0, flags, CMD_LANDSCAPE_CLEAR);
 
							CommandCost ret = DoCommand(flags, CMD_LANDSCAPE_CLEAR, current_tile, 0, 0);
 
							if (ret.Failed()) return ret;
 
							cost.AddCost(ret);
 
							break;
 
@@ -881,7 +881,7 @@ void InitializeTrees()
 

	
 
static CommandCost TerraformTile_Trees(TileIndex tile, DoCommandFlag flags, int z_new, Slope tileh_new)
 
{
 
	return DoCommand(tile, 0, 0, flags, CMD_LANDSCAPE_CLEAR);
 
	return DoCommand(flags, CMD_LANDSCAPE_CLEAR, tile, 0, 0);
 
}