Alloy Smelting: Crushed tungsten carbide can be smelted in the Kiln

This commit is contained in:
Simon Brodtmann 2025-09-14 14:04:58 +02:00
parent 85e644b861
commit 98c577925a
2 changed files with 8 additions and 0 deletions

View file

@ -1,2 +1,3 @@
require("prototypes/vanilla") require("prototypes/vanilla")
require("prototypes/alloy-smelting")
require("prototypes/muluna") require("prototypes/muluna")

View file

@ -0,0 +1,7 @@
if not mods["space-age"] or not mods["alloy-smelting"] then return end
if settings.startup["crushing-industry-ore"].value then
local tungsten_carbide = data.raw.recipe["crushed-tungsten-carbide"]
tungsten_carbide.additional_categories = tungsten_carbide.additional_categories or {}
table.insert(tungsten_carbide.additional_categories, "kiln-smelting")
end