From 19568fbb2eee28c9c9e05f5bd891e168cf56c4e4 Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Mon, 6 Oct 2025 13:14:50 +0200 Subject: [PATCH] Fix SE landfill generation --- data-util.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/data-util.lua b/data-util.lua index c4144a0..c0de5b4 100644 --- a/data-util.lua +++ b/data-util.lua @@ -504,8 +504,8 @@ function util.se_landfill(params) category = "hard-recycling", order = "z-b-"..params.ore, subgroup = "terrain", - result = "landfill", - ingredients = {{params.ore, 50}}, + results = {{ type = "item", name = "landfill", amount = 1 }}, + ingredients = {{ type = "item", name = params.ore, amount = 50}}, } }) util.add_unlock("se-recycling-facility", lname)