Skip to content

Commit 1c0005b

Browse files
authored
Version 1.1.3 patch 1 (#965)
2 parents 9087697 + a6c17bf commit 1c0005b

File tree

16 files changed

+86
-13
lines changed

16 files changed

+86
-13
lines changed

angelsbioprocessing/changelog.txt

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,13 @@
11
---------------------------------------------------------------------------------------------------
2+
Version: 0.7.26
3+
Date: 04.01.2024
4+
Changes:
5+
- Adjust paper volume (964):
6+
- Halve the output of the paper recipes
7+
- Halve the amount of paper required for Phenolic boards
8+
Bugfixes:
9+
- Fixed compatibility issue with AAI Industry and Bob's Assembling Machines (960)
10+
---------------------------------------------------------------------------------------------------
211
Version: 0.7.25
312
Date: 22.12.2023
413
Changes:

angelsbioprocessing/info.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "angelsbioprocessing",
3-
"version": "0.7.25",
3+
"version": "0.7.26",
44
"factorio_version": "1.1",
55
"title": "Angel's Bioprocessing",
66
"author": "Arch666Angel",

angelsbioprocessing/prototypes/overrides/bio-processing-override-bob.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ if bobmods then
5858
})
5959
end
6060

61-
if mods["bobassembly"] and settings.startup["bobmods-assembly-burner"].value == true then
61+
if mods["bobassembly"] and data.raw.technology["basic-automation"] then
6262
OV.remove_prereq("bio-processing-brown", "automation")
6363
OV.add_prereq("bio-processing-brown", "basic-automation")
6464
OV.remove_prereq("basic-chemistry", "automation")
@@ -81,7 +81,7 @@ if mods["bobelectronics"] then
8181
ingredients = {
8282
{ "!!" },
8383
{ type = "fluid", name = "liquid-resin", amount = 10 },
84-
{ type = "item", name = "solid-paper", amount = 10 },
84+
{ type = "item", name = "solid-paper", amount = 5 },
8585
},
8686
category = "electronics-with-fluid",
8787
},

angelsbioprocessing/prototypes/recipes/bio-processing-paper.lua

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -340,9 +340,9 @@ data:extend({
340340
category = "crafting",
341341
subgroup = "bio-paper",
342342
enabled = false,
343-
energy_required = 4,
343+
energy_required = 8,
344344
ingredients = {
345-
{ type = "item", name = "solid-wood-pulp", amount = 2 },
345+
{ type = "item", name = "solid-wood-pulp", amount = 4 },
346346
},
347347
results = {
348348
{ type = "item", name = "solid-paper", amount = 3 },
@@ -366,7 +366,7 @@ data:extend({
366366
{ type = "fluid", name = "gas-chlorine", amount = 80 },
367367
},
368368
results = {
369-
{ type = "item", name = "solid-paper", amount = 4 },
369+
{ type = "item", name = "solid-paper", amount = 2 },
370370
{ type = "item", name = "solid-sodium-hypochlorite", amount = 2 },
371371
},
372372
allow_decomposition = false,
@@ -414,7 +414,7 @@ data:extend({
414414
{ type = "fluid", name = "water", amount = 100 },
415415
},
416416
results = {
417-
{ type = "item", name = "solid-paper", amount = 10 },
417+
{ type = "item", name = "solid-paper", amount = 5 },
418418
{ type = "item", name = "solid-sodium-carbonate", amount = 2 },
419419
{ type = "fluid", name = "gas-oxygen", amount = 40 },
420420
{ type = "fluid", name = "water-yellow-waste", amount = 100 },

angelsindustries/changelog.txt

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,14 @@
11
---------------------------------------------------------------------------------------------------
2+
Version: 0.4.20
3+
Date: 04.01.2024
4+
Changes:
5+
- Compatibility changes for YAFC when Components or Technology Overhauls are enabled (962)
6+
- Science mode:
7+
- Added AAI Loaders compatibility #963
8+
Bugfixes:
9+
- Fixed soft lock when using Components Overhaul (955)
10+
- Fixed compatibility issue with AAI Industry and Bob's Assembling Machines (960)
11+
---------------------------------------------------------------------------------------------------
212
Version: 0.4.19
313
Date: 22.12.2023
414
Changes:

angelsindustries/data-final-fixes.lua

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,12 @@ if angelsmods.industries.tech then
8181
"datacore-processing-6",
8282
})
8383
OV.execute()
84+
85+
-- Populate table of starting items for YAFC to read
86+
if data.data_crawler then
87+
data.script_enabled = data.script_enabled or {}
88+
table.insert(data.script_enabled, { type = "item", name = "angels-main-lab-0" })
89+
end
8490
end
8591

8692
--tech updates part 1
@@ -99,6 +105,12 @@ if angelsmods.industries.components then
99105
angelsmods.functions.AI.add_minable_results()
100106
end
101107
OV.execute()
108+
109+
-- Populate table of starting items for YAFC to read
110+
if data.data_crawler then
111+
data.script_enabled = data.script_enabled or {}
112+
table.insert(data.script_enabled, { type = "item", name = "stone-furnace" })
113+
end
102114
end
103115

104116
--OTHER OVERRIDES

angelsindustries/info.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "angelsindustries",
3-
"version": "0.4.19",
3+
"version": "0.4.20",
44
"factorio_version": "1.1",
55
"title": "Angel's Industries",
66
"author": "Arch666Angel",

angelsindustries/prototypes/overrides/global-tech-base-packs.lua

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,9 @@ if angelsmods.industries.tech then
5656
OV.remove_prereq("bio-arboretum-temperate-1", "resins")
5757
OV.remove_science_pack("bio-arboretum-temperate-1", "token-bio")
5858
OV.add_prereq("bio-arboretum-temperate-2", "resins")
59+
AI.pack_replace("bio-desert-farming-1", "green", "red")
60+
AI.pack_replace("bio-swamp-farming-1", "green", "red")
61+
AI.pack_replace("bio-temperate-farming-1", "green", "red")
5962
-- INDUSTRIES
6063
AI.pack_replace("tech-green-circuit", "green", "red")
6164
OV.remove_prereq("tech-green-circuit", "resins")

angelsindustries/prototypes/overrides/global-tech-bobs-cores.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ if angelsmods.industries.tech then
3737
-------------------------------------------------------------------------------
3838
if mods["bobassembly"] then
3939
--assemblers
40-
if settings.startup["bobmods-assembly-burner"].value == true then
40+
if data.raw.technology["basic-automation"] then
4141
AI.core_replace("basic-automation", "processing", "basic")
4242
AI.core_replace("automation", "basic", "processing")
4343
end

angelsindustries/prototypes/overrides/global-tech-bobs-packs.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ if angelsmods.industries.tech then
4343
if mods["bobassembly"] then
4444
--adds bobassembly stuffs
4545
-- burner assemblers and/ore tier 1 electric
46-
if settings.startup["bobmods-assembly-burner"].value == true then
46+
if data.raw.technology["basic-automation"] then
4747
AI.pack_replace("basic-automation", "red", "grey")
4848
AI.pack_replace("automation", "grey", "red")
4949
end

0 commit comments

Comments
 (0)