Skip to content

Commit

Permalink
AAI / Bob's compatibility #960
Browse files Browse the repository at this point in the history
  • Loading branch information
KiwiHawk committed Jan 1, 2024
1 parent 62f7e85 commit 955b1c2
Show file tree
Hide file tree
Showing 10 changed files with 22 additions and 7 deletions.
5 changes: 5 additions & 0 deletions angelsbioprocessing/changelog.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
---------------------------------------------------------------------------------------------------
Version: 0.7.26
Date: ???
Bugfixes:
- Fixed compatibility issue with AAI Industry and Bob's Assembling Machines (960)
---------------------------------------------------------------------------------------------------
Version: 0.7.25
Date: 22.12.2023
Changes:
Expand Down
2 changes: 1 addition & 1 deletion angelsbioprocessing/info.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "angelsbioprocessing",
"version": "0.7.25",
"version": "0.7.26",
"factorio_version": "1.1",
"title": "Angel's Bioprocessing",
"author": "Arch666Angel",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ if bobmods then
})
end

if mods["bobassembly"] and settings.startup["bobmods-assembly-burner"].value == true then
if mods["bobassembly"] and data.raw.technology["basic-automation"] then
OV.remove_prereq("bio-processing-brown", "automation")
OV.add_prereq("bio-processing-brown", "basic-automation")
OV.remove_prereq("basic-chemistry", "automation")
Expand Down
5 changes: 5 additions & 0 deletions angelsindustries/changelog.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
---------------------------------------------------------------------------------------------------
Version: 0.4.20
Date: ???
Bugfixes:
- Fixed compatibility issue with AAI Industry and Bob's Assembling Machines (960)
---------------------------------------------------------------------------------------------------
Version: 0.4.19
Date: 22.12.2023
Changes:
Expand Down
2 changes: 1 addition & 1 deletion angelsindustries/info.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "angelsindustries",
"version": "0.4.19",
"version": "0.4.20",
"factorio_version": "1.1",
"title": "Angel's Industries",
"author": "Arch666Angel",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ if angelsmods.industries.tech then
-------------------------------------------------------------------------------
if mods["bobassembly"] then
--assemblers
if settings.startup["bobmods-assembly-burner"].value == true then
if data.raw.technology["basic-automation"] then
AI.core_replace("basic-automation", "processing", "basic")
AI.core_replace("automation", "basic", "processing")
end
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ if angelsmods.industries.tech then
if mods["bobassembly"] then
--adds bobassembly stuffs
-- burner assemblers and/ore tier 1 electric
if settings.startup["bobmods-assembly-burner"].value == true then
if data.raw.technology["basic-automation"] then
AI.pack_replace("basic-automation", "red", "grey")
AI.pack_replace("automation", "grey", "red")
end
Expand Down
5 changes: 5 additions & 0 deletions angelsrefining/changelog.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
---------------------------------------------------------------------------------------------------
Version: 0.12.6
Date: ???
Bugfixes:
- Fixed compatibility issue with AAI Industry and Bob's Assembling Machines (960)
---------------------------------------------------------------------------------------------------
Version: 0.12.5
Date: 22.12.2023
Changes:
Expand Down
2 changes: 1 addition & 1 deletion angelsrefining/info.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "angelsrefining",
"version": "0.12.5",
"version": "0.12.6",
"factorio_version": "1.1",
"title": "Angel's Refining",
"author": "Arch666Angel",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ if mods["bobplates"] then

if mods["bobassembly"] and settings.startup["bobmods-assembly-multipurposefurnaces"].value then
-- keep metal mixing furnaces around
if mods["bobassembly"] and settings.startup["bobmods-assembly-burner"].value == true then
if mods["bobassembly"] and data.raw.technology["basic-automation"] then
OV.add_unlock("basic-automation", "stone-mixing-furnace")
else
OV.add_unlock("automation", "stone-mixing-furnace")
Expand Down

0 comments on commit 955b1c2

Please sign in to comment.