From 70d22cb12188f10e2e5d353131d30eebcead35e4 Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Sat, 15 Mar 2025 16:06:43 +0100 Subject: [PATCH] Replace iron gear weel with wooden gear weel in lumber mill copper recipe --- lignumis/prototypes/content/lumber-mill.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lignumis/prototypes/content/lumber-mill.lua b/lignumis/prototypes/content/lumber-mill.lua index add1dd3..78da9a0 100644 --- a/lignumis/prototypes/content/lumber-mill.lua +++ b/lignumis/prototypes/content/lumber-mill.lua @@ -52,7 +52,7 @@ LumberMill.RecipeBuilder:new() :ingredients({ { type = "item", name = "stone-brick", amount = 40 }, { type = "item", name = "lumber", amount = 50 }, - { type = "item", name = "iron-gear-wheel", amount = 50 }, + { type = "item", name = "wooden-gear-wheel", amount = 50 }, { type = "item", name = "copper-plate", amount = basic_circuit_board and 30 or 60 }, { type = "item", name = basic_circuit_board and "basic-circuit-board" or "electronic-circuit", amount = 30 }, { type = "item", name = "assembling-machine-1", amount = 2 }