Hello!
I noticed that when you create a colour ground pipe you only get one piece instead of 2, as is the case in the basic version of the game. I wonder if this is intentional?
If not, I would like to suggest a change to make the recipe the same as in vanilla. In addition to the suggestion, I even have a solution ready :)
In the file data-updates.lua - function: create_colour_overlay_recipe
if base_name == "pipe-to-ground" then
color_coded_recipe.results = {
{ type = "item", name = new_recipe_name, amount = 2 }
}
else
color_coded_recipe.results = {
{ type = "item", name = new_recipe_name, amount = 1 }
}
end