From fc51b26a282592a5c4f763e94fdcedfd187be82c Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Tue, 18 Nov 2025 09:38:04 +0100 Subject: [PATCH 1/2] Set default weight for battery --- lignumis/prototypes/integrations/vanilla.lua | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lignumis/prototypes/integrations/vanilla.lua b/lignumis/prototypes/integrations/vanilla.lua index 63ff70f..704a9b8 100644 --- a/lignumis/prototypes/integrations/vanilla.lua +++ b/lignumis/prototypes/integrations/vanilla.lua @@ -365,4 +365,5 @@ set_default_weight("fast-transport-belt", 100) set_default_weight("fast-underground-belt", 50) set_default_weight("fast-splitter", 50) set_default_weight("steel-plate", 400) -set_default_weight("steam-turbine", 10) \ No newline at end of file +set_default_weight("steam-turbine", 10) +set_default_weight("battery", 400) \ No newline at end of file From d8c3b5b565d770c9277d1ccf78ebae0a2fb21822 Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Tue, 18 Nov 2025 10:04:41 +0100 Subject: [PATCH 2/2] Don't hide worker robot speed 3 before before level 2 is researched --- lignumis/prototypes/integrations/vanilla.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/lignumis/prototypes/integrations/vanilla.lua b/lignumis/prototypes/integrations/vanilla.lua index 704a9b8..dd7af70 100644 --- a/lignumis/prototypes/integrations/vanilla.lua +++ b/lignumis/prototypes/integrations/vanilla.lua @@ -224,6 +224,7 @@ robots_speed_technology_3.unit = { ingredients = { { "automation-science-pack", 1 }, { "logistic-science-pack", 1 }, { "chemical-science-pack", 1 } }, time = 30 } +robots_speed_technology_3.upgrade = false local robots_speed_technology_4 = data.raw.technology["worker-robots-speed-4"] robots_speed_technology_4.prerequisites = { "worker-robots-speed-3", "utility-science-pack" }