here is a suggested change, tested for functionality.
Code: Select all
data:extend({
	{
    type = "technology",
    name = "loader",
    icon = "__LoaderRedux__/graphics/tech/yellow-loader-tech.png",
    icon_size = 128,
    effects =
    {
      {
        type = "unlock-recipe",
        recipe = "loader"
      },
	 },
    prerequisites = {"logistics"},
    unit =
    {
      count = 150,
      ingredients =
      {
        {"science-pack-1", 1},
        {"science-pack-2", 1}
      },
      time = 15
    },
    order = "a-f-a",
	},
	{
    type = "technology",
    name = "fast-loader",
    icon = "__LoaderRedux__/graphics/tech/red-loader-tech.png",
    icon_size = 128,
    effects =
    {
      {
        type = "unlock-recipe",
        recipe = "fast-loader"
      },
	 },
    prerequisites = {"logistics-2","loader"},
    unit =
    {
      count = 300,
      ingredients =
      {
        {"science-pack-1", 1},
        {"science-pack-2", 1}
      },
      time = 15
    },
    order = "a-f-b",
	},
	{
    type = "technology",
    name = "express-loader",
    icon = "__LoaderRedux__/graphics/tech/blue-loader-tech.png",
    icon_size = 128,
    effects =
    {
      {
        type = "unlock-recipe",
        recipe = "express-loader"
      },
	 },
    prerequisites = {"logistics-3","fast-loader"},
    unit =
    {
      count = 400,
      ingredients =
      {
        {"science-pack-1", 1},
        {"science-pack-2", 1},
        {"science-pack-3", 1},
        {"production-science-pack", 1}
      },
      time = 15
    },
    order = "a-f-c",
	},
})














