From 851ced08fb7e137b66924210f62e23e001ba54bc Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Mon, 2 Dec 2024 23:00:02 +0100 Subject: [PATCH] Fix holmium --- hot-metals/prototypes/hot.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hot-metals/prototypes/hot.lua b/hot-metals/prototypes/hot.lua index 7a29dd2..d5ce29b 100644 --- a/hot-metals/prototypes/hot.lua +++ b/hot-metals/prototypes/hot.lua @@ -13,7 +13,7 @@ function createHotVariant(itemName, _spoil_ticks) -- Change recipes for _, recipe in pairs(data.raw.recipe) do - if ((recipe.category == "smelting" or recipe.category == "metallurgy") and recipe.results[1].name == itemName) then + if ((recipe.category == "smelting" or recipe.category == "metallurgy" or recipe.category == "crafting-with-fluid-or-metallurgy") and recipe.results[1].name == itemName) then recipe.results[1].name = hotItem.name recipe.localised_name = { "item-name." .. itemName } end