Compare commits
2 commits
861a878e6e
...
56593eb6f7
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
56593eb6f7 | ||
|
|
606bcedb5b |
3 changed files with 11 additions and 5 deletions
|
|
@ -1,4 +1,9 @@
|
|||
---------------------------------------------------------------------------------------------------
|
||||
Version: 2.0.24
|
||||
Date: 18.10.2025
|
||||
Bug Fixes:
|
||||
- Krastorio2: Compatibility fixes
|
||||
---------------------------------------------------------------------------------------------------
|
||||
Version: 2.0.23
|
||||
Date: 17.10.2025
|
||||
Bug Fixes:
|
||||
|
|
|
|||
|
|
@ -488,6 +488,7 @@ 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
|
||||
|
|
@ -496,12 +497,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", "kr-oxygen")
|
||||
thxbob.lib.recipe.replace_ingredient("bi-biomass-3", "liquid-air", "kr-oxygen")
|
||||
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)
|
||||
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\"")
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "Bio_Industries_2",
|
||||
"version": "2.0.23",
|
||||
"version": "2.0.24",
|
||||
"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",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue