Compare commits

..

No commits in common. "56593eb6f721efd25d5509f170dc423a511fd74f" and "861a878e6ec58f68610aa5df43d61a36a952bd69" have entirely different histories.

3 changed files with 5 additions and 11 deletions

View file

@ -1,9 +1,4 @@
---------------------------------------------------------------------------------------------------
Version: 2.0.24
Date: 18.10.2025
Bug Fixes:
- Krastorio2: Compatibility fixes
---------------------------------------------------------------------------------------------------
Version: 2.0.23
Date: 17.10.2025
Bug Fixes:

View file

@ -488,7 +488,6 @@ if not data.raw.fluid["nitrogen"] and not data.raw.fluid["kr-nitrogen"] then
-- Recipes for "bi-liquid-air" and "bi-nitrogen" aren't needed!
else
local oxygen = mods["Krastorio2"] and "kr-oxygen" or "oxygen"
local nitrogen = mods["Krastorio2"] and "kr-nitrogen" or "nitrogen"
-- Remove recipe unlocks
@ -497,12 +496,12 @@ else
BioInd.writeDebug("Removed recipe unlocks for \"bi-liquid-air\" and \"bi-nitrogen\"")
-- Replace liquid air with oxygen (from Krastorio/K2) in recipes for Algae Biomass 2 and 3
if data.raw.fluid[oxygen] then
thxbob.lib.recipe.replace_ingredient("bi-biomass-2", "liquid-air", oxygen)
thxbob.lib.recipe.replace_ingredient("bi-biomass-3", "liquid-air", oxygen)
if data.raw.fluid.oxygen then
thxbob.lib.recipe.replace_ingredient("bi-biomass-2", "liquid-air", "kr-oxygen")
thxbob.lib.recipe.replace_ingredient("bi-biomass-3", "liquid-air", "kr-oxygen")
BioInd.writeDebug("Replaced \"liquid-air\" with \"oxygen\" in recipes \"bi-biomass-2\" and \"bi-biomass-3\"")
-- Perhaps there is no oxygen? But there's nitrogen for sure, so we fall back to that!
elseif data.raw.fluid[nitrogen] then
elseif data.raw.fluid.nitrogen then
thxbob.lib.recipe.replace_ingredient("bi-biomass-2", "liquid-air", nitrogen)
thxbob.lib.recipe.replace_ingredient("bi-biomass-3", "liquid-air", nitrogen)
BioInd.writeDebug("Replaced \"liquid-air\" with \"nitrogen\" in recipes \"bi-biomass-2\" and \"bi-biomass-3\"")

View file

@ -1,6 +1,6 @@
{
"name": "Bio_Industries_2",
"version": "2.0.24",
"version": "2.0.23",
"factorio_version": "2.0",
"title": "Bio Industries",
"author": "TheSAguy - Had a few Ideas, Pi-C (Programming Genius), Snouz (Graphics Wizard), Cackling Fiend - Conversion to F2.0",