Skip to content

Commit 8e90522

Browse files
committed
Removed muddy water output from geothermal water processing
Fixed regenerative heat exchanger being non-usable when hardmode is installed
1 parent e46045a commit 8e90522

File tree

4 files changed

+14
-9
lines changed

4 files changed

+14
-9
lines changed

changelog.txt

+3
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@ Date: tba
55
- removed shorthand recipe declarations
66
Changes:
77
- Changed the internal name of the intelligent unit technology from "nano-tech" to "quantum-processor".
8+
- Removed muddy water output from geothermal water processing
9+
Bugfixes:
10+
- Fixed regenerative heat exchanger being non-usable when hardmode is installed
811
---------------------------------------------------------------------------------------------------
912
Version: 3.2.3
1013
Date: 2025-04-15

data-final-fixes.lua

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
-- call after hardmode runs
2+
3+
-- modify hardmode RHEs to only have one heat input
4+
if mods["pyhardmode"] then
5+
data.raw["assembling-machine"].rhe.energy_source.connections = {{
6+
position = {-2, 0},
7+
direction = defines.direction.west
8+
}}
9+
end

data-updates.lua

+1-2
Original file line numberDiff line numberDiff line change
@@ -207,8 +207,7 @@ RECIPE("geo-he-00"):set_fields {
207207
{type = "fluid", name = "water", amount = 400}
208208
},
209209
results = {
210-
{type = "fluid", name = "steam", amount = 320, temperature = 500},
211-
{type = "fluid", name = "dirty-water-light", amount = 80}
210+
{type = "fluid", name = "steam", amount = 320, temperature = 500}
212211
}
213212
}
214213

prototypes/buildings/geothermal-plant-mk01.lua

+1-7
Original file line numberDiff line numberDiff line change
@@ -146,11 +146,5 @@ data.raw["assembling-machine"].rhe.fluid_boxes = {
146146
pipe_covers = py.pipe_covers(false, true, true, true),
147147
volume = 100,
148148
pipe_connections = {{flow_direction = "output", position = {0.0, 1.95}, direction = defines.direction.south}}
149-
},
150-
{
151-
production_type = "output",
152-
pipe_covers = py.pipe_covers(false, true, true, true),
153-
volume = 100,
154-
pipe_connections = {{flow_direction = "output", position = {-1.95, 0.0}, direction = defines.direction.west}}
155-
},
149+
}
156150
}

0 commit comments

Comments
 (0)