Unified Chemical Plant


A powerful **7×7 industrial building** that combines the chemical plant, oil refinery, and fuel refinery into a single versatile structure.

Content
19 days ago
2.0
780
Fluids Manufacturing

g Chem plant

2 months ago

I'm not sure if this is intended but I can't make plastics/sulfur like at a regular Chem Plant

2 months ago

Maybe you have some mods, because everything is available to me. Write down which mods you use, I'll try to simulate your problem.

a month ago

Had this same issue. Had to add this in data-final-fixes.lua to resync after space age additions.

local chem = data.raw["assembling-machine"]["chemical-plant"]
if chem then
local existing = {}
for _, cat in pairs(plant.crafting_categories) do
existing[cat] = true
end

for _, cat in pairs(chem.crafting_categories) do
if not existing[cat] then
table.insert(plant.crafting_categories, cat)
end
end
end

a month ago

Check in the new version, it should be fixed.

a month ago

Looks to be working!

a month ago

Great, thanks for the feedback.

New response