Skip to content

Commit

Permalink
Adjust paper volume #964
Browse files Browse the repository at this point in the history
  • Loading branch information
KiwiHawk committed Jan 4, 2024
1 parent 403f9d9 commit 6a0b511
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
4 changes: 4 additions & 0 deletions angelsbioprocessing/changelog.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
---------------------------------------------------------------------------------------------------
Version: 0.7.26
Date: ???
Changes:
- Adjust paper volume (964):
- Halve the output of the paper recipes
- Halve the amount of paper required for Phenolic boards
Bugfixes:
- Fixed compatibility issue with AAI Industry and Bob's Assembling Machines (960)
---------------------------------------------------------------------------------------------------
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ if mods["bobelectronics"] then
ingredients = {
{ "!!" },
{ type = "fluid", name = "liquid-resin", amount = 10 },
{ type = "item", name = "solid-paper", amount = 10 },
{ type = "item", name = "solid-paper", amount = 5 },
},
category = "electronics-with-fluid",
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -340,9 +340,9 @@ data:extend({
category = "crafting",
subgroup = "bio-paper",
enabled = false,
energy_required = 4,
energy_required = 8,
ingredients = {
{ type = "item", name = "solid-wood-pulp", amount = 2 },
{ type = "item", name = "solid-wood-pulp", amount = 4 },
},
results = {
{ type = "item", name = "solid-paper", amount = 3 },
Expand All @@ -366,7 +366,7 @@ data:extend({
{ type = "fluid", name = "gas-chlorine", amount = 80 },
},
results = {
{ type = "item", name = "solid-paper", amount = 4 },
{ type = "item", name = "solid-paper", amount = 2 },
{ type = "item", name = "solid-sodium-hypochlorite", amount = 2 },
},
allow_decomposition = false,
Expand Down Expand Up @@ -414,7 +414,7 @@ data:extend({
{ type = "fluid", name = "water", amount = 100 },
},
results = {
{ type = "item", name = "solid-paper", amount = 10 },
{ type = "item", name = "solid-paper", amount = 5 },
{ type = "item", name = "solid-sodium-carbonate", amount = 2 },
{ type = "fluid", name = "gas-oxygen", amount = 40 },
{ type = "fluid", name = "water-yellow-waste", amount = 100 },
Expand Down

0 comments on commit 6a0b511

Please sign in to comment.