Compare commits
No commits in common. "main" and "2.0.2" have entirely different histories.
5 changed files with 5 additions and 13 deletions
|
|
@ -1,11 +1,4 @@
|
|||
---------------------------------------------------------------------------------------------------
|
||||
Version: 2.0.3
|
||||
Date: 02.11.2025
|
||||
Bug Fixes:
|
||||
- Fix name of argon extraction recipe
|
||||
- Argon extraction recipe uses basic-chemistry crafting category
|
||||
- Change "optics" to "lamp" to respect the Factorio 2.0 renaming
|
||||
---------------------------------------------------------------------------------------------------
|
||||
Version: 2.0.2
|
||||
Date: 21.10.2025
|
||||
Changes:
|
||||
|
|
|
|||
|
|
@ -855,8 +855,8 @@ function util.replace_ingredients_prior_to(tech, old, new, multiplier)
|
|||
end
|
||||
util.remove_prior_unlocks(tech, old)
|
||||
for i, recipe in pairs(data.raw.recipe) do
|
||||
if (recipe.enabled and recipe.enabled ~= false)
|
||||
and (not recipe.hidden or recipe.hidden == true) -- probably don't want to change hidden recipes
|
||||
if (recipe.enabled and recipe.enabled ~= 'false')
|
||||
and (not recipe.hidden or recipe.hidden == 'true') -- probably don't want to change hidden recipes
|
||||
and string.sub(recipe.name, 1, 3) ~= 'se-' -- have to exlude SE in general :(
|
||||
then
|
||||
-- log("BZZZ due to 'enabled' replacing " .. old .. " with " .. new .." in " .. recipe.name) -- Handy Debug :|
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "GasGasGases2",
|
||||
"version": "2.0.3",
|
||||
"version": "2.0.2",
|
||||
"factorio_version": "2.0",
|
||||
"title": "GasGasGases",
|
||||
"description": "This mod is inspired by Brevven's BZ mods and adds the 6 noble gases plus uses for them.",
|
||||
|
|
|
|||
|
|
@ -294,8 +294,7 @@ if mods["bzgas2"] then
|
|||
{
|
||||
type = "recipe",
|
||||
name = "argon-extraction",
|
||||
localised_name = { "fluid-name.argon" },
|
||||
category = data.raw["recipe-category"]["basic-chemistry"] and "basic-chemistry" or "chemistry",
|
||||
category = "chemistry",
|
||||
icons = (mods["Krastorio2"] and
|
||||
{
|
||||
{ icon = "__GasGasGases2__/graphics/icons/argon.png", icon_size = 64},
|
||||
|
|
|
|||
|
|
@ -33,5 +33,5 @@ data:extend(
|
|||
})
|
||||
util.add_prerequisite("chemical-science-pack", "air-liquefaction")
|
||||
if not mods["bzgas2"] then
|
||||
util.add_prerequisite("lamp", "air-liquefaction")
|
||||
util.add_prerequisite("optics", "air-liquefaction")
|
||||
end
|
||||
Loading…
Add table
Add a link
Reference in a new issue