From a83851341ac79b5993d5dd9928884230f1a77d65 Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Fri, 3 Jan 2025 15:33:27 +0100 Subject: [PATCH] Position Deep miner in technology tree --- lignumis/prototypes/content/deep-miner.lua | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/lignumis/prototypes/content/deep-miner.lua b/lignumis/prototypes/content/deep-miner.lua index e81e6cb..c2382b5 100644 --- a/lignumis/prototypes/content/deep-miner.lua +++ b/lignumis/prototypes/content/deep-miner.lua @@ -21,8 +21,14 @@ DeepMiner.RecipeBuilder:new() :apply() DeepMiner.TechnologyBuilder:new() - :prerequisites({ "automation-science-pack" }) + :prerequisites({ "space-science-pack" }) :count(500) - :ingredients({ { "automation-science-pack", 1 } }) + :ingredients({ + { "automation-science-pack", 1 }, + { "logistic-science-pack", 1 }, + { "chemical-science-pack", 1 }, + { "production-science-pack", 1 }, + { "space-science-pack", 1 } + }) :time(60) - :apply() \ No newline at end of file + :apply()