From 612934074b93d17a463c870ff69eb9c9b51c9fb0 Mon Sep 17 00:00:00 2001 From: James Gillham Date: Fri, 5 Jun 2026 21:49:33 +0100 Subject: [PATCH] Comment out the code that disables the landfill recipe --- map_gen/maps/frontier/modules/rocket_silo.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/map_gen/maps/frontier/modules/rocket_silo.lua b/map_gen/maps/frontier/modules/rocket_silo.lua index fed2839e1..32a6b7c68 100644 --- a/map_gen/maps/frontier/modules/rocket_silo.lua +++ b/map_gen/maps/frontier/modules/rocket_silo.lua @@ -319,17 +319,17 @@ function RocketSilo.on_research_finished(technology) if technology.force.name ~= 'player' then return end - local this = Public.get() + --local this = Public.get() local recipes = technology.force.recipes if recipes['rocket-silo'] then recipes['rocket-silo'].enabled = false end - if this.rockets_launched == 0 and recipes['landfill'].enabled then + --[[ if this.rockets_launched == 0 and recipes['landfill'].enabled then recipes['landfill'].enabled = false end if this.rockets_launched > 0 and not recipes['landfill'].enabled then recipes['landfill'].enabled = true - end + end ]] end return RocketSilo