From d33eb0a3190e07b9c7a368bd4e7e7dacb3368c7c Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Wed, 29 Jan 2025 18:57:25 +0100 Subject: [PATCH] Temporary fix for crash due to "Wood Walls and floors" --- lignumis/prototypes/integrations/Wood-Walls.lua | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lignumis/prototypes/integrations/Wood-Walls.lua b/lignumis/prototypes/integrations/Wood-Walls.lua index 7262078..479f2cd 100644 --- a/lignumis/prototypes/integrations/Wood-Walls.lua +++ b/lignumis/prototypes/integrations/Wood-Walls.lua @@ -1,3 +1,6 @@ local recipe = data.raw.recipe["wooden-wall"] recipe.ingredients = { { type = "item", name = "lumber", amount = 4 } } -recipe.results = { { type = "item", name = "wooden-wall", amount = 1 } } \ No newline at end of file +recipe.results = { { type = "item", name = "wooden-wall", amount = 1 } } + +-- https://mods.factorio.com/mod/Wood-Walls/discussion/679915cbb8bf3c84c65db404 +data.raw.corpse["woodenwall-remnants"].icon = "__Wood-Walls__/graphics/wooden-wall/wooden-wall.png" \ No newline at end of file