Replace yellow belt with brown belt in electric lab recipe
This commit is contained in:
parent
74e08e9c12
commit
1885e262a1
1 changed files with 7 additions and 0 deletions
|
@ -56,6 +56,13 @@ biolab.inputs = table.assign({
|
||||||
"steam-science-pack"
|
"steam-science-pack"
|
||||||
}, biolab.inputs)
|
}, biolab.inputs)
|
||||||
|
|
||||||
|
local lab_recipe = data.raw.recipe["lab"]
|
||||||
|
for _, ingredient in pairs(lab_recipe.ingredients) do
|
||||||
|
if ingredient.name == "transport-belt" then
|
||||||
|
ingredient.name = "wood-transport-belt"
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
|
||||||
-- Wood processing
|
-- Wood processing
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue