Skip to content

Commit

Permalink
Fixed 1,800,000/s max flow rate instead of 30,000/s. Resolves pyanodo…
Browse files Browse the repository at this point in the history
  • Loading branch information
notnotmelon committed Dec 11, 2024
1 parent 2c26012 commit 9a155cd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ Date: ?
- Fixed the borax mine getting stuck on itself with certain levels of belt stacking. Resolves https://github.com/pyanodon/pybugreports/issues/779
- Fixed one of the borax item variations being too small. Resolves https://github.com/pyanodon/pybugreports/issues/775
- Fixed DiscoScience integration. Resolves https://github.com/pyanodon/pybugreports/issues/774
- Fixed 1,800,000/s max flow rate instead of 30,000/s. Resolves https://github.com/pyanodon/pybugreports/issues/772
---------------------------------------------------------------------------------------------------
Version: 3.0.26
Date: 2024-11-29
Expand Down
2 changes: 1 addition & 1 deletion prototypes/updates/base-updates.lua
Original file line number Diff line number Diff line change
Expand Up @@ -378,7 +378,7 @@ big_fluid_icons_for_pipes("niobium-pipe-to-ground")
big_fluid_icons_for_pipes("ht-pipes")
big_fluid_icons_for_pipes("ht-pipes-to-ground")

data.raw["utility-constants"]["default"].max_fluid_flow = math.max(data.raw["utility-constants"]["default"].max_fluid_flow or 0, 30000)
data.raw["utility-constants"]["default"].max_fluid_flow = math.max(data.raw["utility-constants"]["default"].max_fluid_flow or 0, 500)

data.raw["technology"]["efficiency-module"].prerequisites = {mods.pyalternativeenergy and "machine-components-mk02" or "productivity-module"}
data.raw["technology"]["bulk-inserter"].prerequisites = {mods.pyhightech and "basic-electronics" or "chemical-science-pack"}
Expand Down

0 comments on commit 9a155cd

Please sign in to comment.