From ecfad09c1fdff0bb1b540351de43308b3fed0a2e Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Sat, 8 Nov 2025 09:07:55 +0100 Subject: [PATCH] Fix recipe names --- MDbobelectronics2/prototypes/recipe-updates.lua | 2 ++ 1 file changed, 2 insertions(+) diff --git a/MDbobelectronics2/prototypes/recipe-updates.lua b/MDbobelectronics2/prototypes/recipe-updates.lua index 63a7db1..e6a4f03 100644 --- a/MDbobelectronics2/prototypes/recipe-updates.lua +++ b/MDbobelectronics2/prototypes/recipe-updates.lua @@ -105,12 +105,14 @@ end if mods["aai-industry"] then local greenrecipe2 = table.deepcopy(data.raw["recipe"]["basic-circuit-board"]) greenrecipe2.name = "basic-circuit-board-stone" +greenrecipe2.localised_name = { "item-name.basic-circuit-board" } data:extend({greenrecipe2}) bobmods.lib.recipe.replace_ingredient("basic-circuit-board-stone", "wood", "stone-tablet") --- local greyrecipe2 = table.deepcopy(data.raw["recipe"]["phenolic-board"]) greyrecipe2.name = "phenolic-board-stone" +greyrecipe2.localised_name = { "item-name.phenolic-board" } data:extend({greyrecipe2}) bobmods.lib.recipe.replace_ingredient("phenolic-board-stone", "wood", "stone-tablet")