Fix foundry requiring crucible while crucible is being made in foundry
This commit is contained in:
parent
d4952e2620
commit
4470642a06
1 changed files with 5 additions and 1 deletions
|
|
@ -84,7 +84,6 @@ me.crucible_ingredients = {"zirconia", "silica", "stone-brick"}
|
||||||
|
|
||||||
me.furnaces = {
|
me.furnaces = {
|
||||||
"electric-furnace",
|
"electric-furnace",
|
||||||
"foundry", -- Space Age
|
|
||||||
"basic-foundry", -- BZ Tin
|
"basic-foundry", -- BZ Tin
|
||||||
"electric-foundry", -- BZ
|
"electric-foundry", -- BZ
|
||||||
"industrial-furnace", -- AAI
|
"industrial-furnace", -- AAI
|
||||||
|
|
@ -106,6 +105,11 @@ me.furnaces = {
|
||||||
"5d-industrial-furnace",
|
"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
|
if me.use_flake_graphite() then
|
||||||
table.insert(me.resources, {"graphite", "nauvis"})
|
table.insert(me.resources, {"graphite", "nauvis"})
|
||||||
end
|
end
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue