This commit is contained in:
Brevven 2025-05-03 03:48:32 -07:00
parent c904f170c5
commit 3ed2781720
4 changed files with 13 additions and 2 deletions

View file

@ -574,6 +574,12 @@ data:extend({
},
})
if util.me.get_setting("aps-planet") == "vulcanus" then
util.add_unlock("foundry", "crucible")
util.remove_recipe_effect("advanced-material-processing-2", "crucible")
end
-- Space exploration subgroups
if mods["space-exploration"] and string.sub(mods["space-exploration"], 1, 3) == "0.6" then
data:extend({

View file

@ -1,4 +1,9 @@
---------------------------------------------------------------------------------------------------
Version: 2.0.16
Date: 2025-04-20
Changes:
- Any planet start on Vulcanus: Unlock crucible with foundry tech.
---------------------------------------------------------------------------------------------------
Version: 2.0.15
Date: 2025-04-19
Fixes:

View file

@ -1330,7 +1330,7 @@ end
-- Replace one product with another in a recipe
function util.replace_product(recipe_name, old, new, options)
if not should_force(options) and bypass(recipe_name) then return end
if data.raw.recipe[recipe_name] then
if data.raw.recipe[recipe_name] and (data.raw.item[new] or data.raw.fluid[new]) then
replace_product(data.raw.recipe[recipe_name], old, new, options)
end
end

View file

@ -1,6 +1,6 @@
{
"name": "bzcarbon",
"version": "2.0.15",
"version": "2.0.16",
"factorio_version": "2.0",
"title": "Graphite & Diamonds",
"author": "Brevven",