This commit is contained in:
Simon Brodtmann 2025-12-12 18:25:57 +01:00
parent 48f8d8bcb4
commit 6a4f669f59

View file

@ -1,5 +1,7 @@
local item_sounds = require("__base__.prototypes.item_sounds") local item_sounds = require("__base__.prototypes.item_sounds")
local Recipe = require("__cf-lib__/data/Recipe")
if not mods["wood-logistics"] then
data:extend({ data:extend({
{ {
type = "item", type = "item",
@ -32,3 +34,6 @@ data:extend({
energy_required = 1 energy_required = 1
} }
}) })
else
Recipe:new("lumber"):addCategory("wood-processing")
end