Update bz mods to version 2

This commit is contained in:
Simon Brodtmann 2025-10-20 10:35:00 +02:00
parent 9cf62985ff
commit 27e33afa95
2 changed files with 3 additions and 3 deletions

View file

@ -99,7 +99,7 @@ if get_setting("bz-recipe-bypass") then
end
function util.is_foundry()
return mods.bzfoundry and not me.get_setting("bzfoundry-minimal")
return mods.bzfoundry2 and not me.get_setting("bzfoundry-minimal")
end
function should_force(options)

View file

@ -9,11 +9,11 @@ gyro_ingredients = { -- outputs 4
util.item(silicon, 4)}
gyro_prereqs = {util.me.silicon_processing}
if mods.bzcarbon then
if mods["bzcarbon2"] then
table.insert(gyro_ingredients, util.item("diamond", 1))
table.insert(gyro_prereqs, "diamond-processing")
end
if mods.bztungsten and not mods["space-age"] then
if mods.bztungsten2 and not mods["space-age"] then
table.insert(gyro_ingredients, util.item("tungsten-plate", 1))
table.insert(gyro_prereqs, "tungsten-processing")
elseif mods.bztitanium and data.raw.item["titanium-plate"] then