From 1e219ba4adf7ccdafee9a26740cde74ab37df7f4 Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Sat, 15 Mar 2025 10:33:04 +0100 Subject: [PATCH] AAI Industry: Lumber mill copper recipe uses burner assembler instead of electrical assembler 1 --- lignumis/prototypes/compatibility/aai-industry.lua | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lignumis/prototypes/compatibility/aai-industry.lua b/lignumis/prototypes/compatibility/aai-industry.lua index 5fc7475..e47048e 100644 --- a/lignumis/prototypes/compatibility/aai-industry.lua +++ b/lignumis/prototypes/compatibility/aai-industry.lua @@ -1,4 +1,5 @@ local Technology = require("__cf-lib__/data/Technology") +local Recipe = require("__cf-lib__/data/Recipe") if not mods["aai-industry"] then return end @@ -21,6 +22,9 @@ burner_automation:addRecipe("burner-assembling-machine") Technology:new("basic-logistics"):removeRecipe("transport-belt") Technology:new("logistics"):addRecipe("transport-belt") +-- Electric assembler comes later with AAI Industry active +Recipe:new("lumber-mill-copper"):replaceIngredient("assembling-machine-1", "burner-assembling-machine") + -- Entities local wall = data.raw["wall"]["concrete-wall"]