Fix foundry requiring crucible while crucible is being made in foundry

This commit is contained in:
Simon Brodtmann 2025-11-01 13:35:34 +01:00
parent d4952e2620
commit 4470642a06

View file

@ -84,7 +84,6 @@ me.crucible_ingredients = {"zirconia", "silica", "stone-brick"}
me.furnaces = {
"electric-furnace",
"foundry", -- Space Age
"basic-foundry", -- BZ Tin
"electric-foundry", -- BZ
"industrial-furnace", -- AAI
@ -106,6 +105,11 @@ me.furnaces = {
"5d-industrial-furnace",
}
-- Space Age foundry conflicts with bzfoundry burner foundry
if has_mod("space-age") then
table.insert(me.furnaces, "foundry")
end
if me.use_flake_graphite() then
table.insert(me.resources, {"graphite", "nauvis"})
end