From 044e058784960040300154ce988a33e6d21e76b7 Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Fri, 28 Mar 2025 21:13:32 +0100 Subject: [PATCH] Any planet start (Vulcanus) + Crushing Industry: Move iron crushing to fix soft-lock --- lignumis/prototypes/compatibility/any-planet-start.lua | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/lignumis/prototypes/compatibility/any-planet-start.lua b/lignumis/prototypes/compatibility/any-planet-start.lua index 3584a8a..01a8317 100644 --- a/lignumis/prototypes/compatibility/any-planet-start.lua +++ b/lignumis/prototypes/compatibility/any-planet-start.lua @@ -32,6 +32,11 @@ if target_planet == "vulcanus" then Technology:new("tungsten-carbide"):addPrerequisite("planet-discovery-vulcanus") Technology:new("iron-processing").prototype.research_trigger.entity = "big-volcanic-rock" Technology:new("copper-processing").prototype.research_trigger.entity = "big-volcanic-rock" + + if mods["crushing-industry"] then + Technology:new("concrete"):addRecipe("crushed-iron-ore") + Technology:new("ore-crushing"):removeRecipe("crushed-iron-ore") + end end