From 0f7c32fccf2d0a5fbd25595721cc015c68c41d80 Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Sun, 19 Oct 2025 14:02:43 +0200 Subject: [PATCH] Fix recipe with missing ingredient type --- Cobalt2/prototypes/cobalt-recipe-se.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cobalt2/prototypes/cobalt-recipe-se.lua b/Cobalt2/prototypes/cobalt-recipe-se.lua index f62062b..31c5ec0 100644 --- a/Cobalt2/prototypes/cobalt-recipe-se.lua +++ b/Cobalt2/prototypes/cobalt-recipe-se.lua @@ -49,7 +49,7 @@ if mods["space-exploration"] then }, energy_required = 45, ingredients = { - {name = mods["Krastorio2"] and "enriched-cobalt" or "cobaltite-ore", amount = 24}, + {type = "item", name = mods["Krastorio2"] and "enriched-cobalt" or "cobaltite-ore", amount = 24}, {type = "fluid", name = "se-pyroflux", amount = 10}, }, enabled = false,