Wood logistics: Correct lumber mill technology

This commit is contained in:
Simon Brodtmann 2025-12-14 18:18:29 +01:00
parent 377a703ed8
commit 31be99bdec
4 changed files with 17 additions and 13 deletions

View file

@ -119,18 +119,6 @@ else
})
})
table.assign(data.raw.technology["advanced-carpentry"], {
prerequisites = { "steam-science-pack" },
unit = {
count = 250,
time = 15,
ingredients = {
{ "wood-science-pack", 1 },
{ "steam-science-pack", 1 }
}
}
})
Recipe:new("lumber-mill")
:clone("lumber-mill-copper")
:assign({

View file

@ -0,0 +1,13 @@
if mods["wood-logistics"] then
table.assign(data.raw.technology["advanced-carpentry"], {
prerequisites = { "steam-science-pack" },
unit = {
count = 250,
time = 15,
ingredients = {
{ "wood-science-pack", 1 },
{ "steam-science-pack", 1 }
}
}
})
end

View file

@ -1,2 +1,3 @@
require("fuel-category-updates")
require("lignumis/planet-updates")
require("lignumis/planet-updates")
require("technology-updates")