From 0d8e793fc7ccc6441786fbe3dc9619524a83f894 Mon Sep 17 00:00:00 2001 From: Hein Wessels <39875036+heinwessels@users.noreply.github.com> Date: Wed, 21 Jan 2026 10:38:17 +0100 Subject: [PATCH 1/2] Increase valve flow rates similar to pump The pump's flow rate is increases 10x. This change does the same for valves. --- prototypes/updates/pyindustry-updates.lua | 3 +++ 1 file changed, 3 insertions(+) diff --git a/prototypes/updates/pyindustry-updates.lua b/prototypes/updates/pyindustry-updates.lua index feca2568b..8543140ad 100644 --- a/prototypes/updates/pyindustry-updates.lua +++ b/prototypes/updates/pyindustry-updates.lua @@ -28,3 +28,6 @@ RECIPE { data.raw["container"]["py-logo-15tiles"].minable.result = "py-logo-15tiles" RECIPE("niobium-pipe"):remove_unlock("py-storage-tanks"):add_unlock("niobium") RECIPE("niobium-pipe-to-ground"):remove_unlock("py-storage-tanks"):add_unlock("niobium") + +data.raw.valve["py-overflow-valve"].flow_rate = data.raw.valve["py-overflow-valve"].flow_rate * 10 +data.raw.valve["py-underflow-valve"].flow_rate = data.raw.valve["ppy-underflow-valve"].flow_rate * 10 From 5762d34aa9a98d3441c42a47c14d8d11a297898b Mon Sep 17 00:00:00 2001 From: Hein Wessels <39875036+heinwessels@users.noreply.github.com> Date: Wed, 21 Jan 2026 10:43:32 +0100 Subject: [PATCH 2/2] Spelling mistake --- prototypes/updates/pyindustry-updates.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/prototypes/updates/pyindustry-updates.lua b/prototypes/updates/pyindustry-updates.lua index 8543140ad..cbb710184 100644 --- a/prototypes/updates/pyindustry-updates.lua +++ b/prototypes/updates/pyindustry-updates.lua @@ -30,4 +30,4 @@ RECIPE("niobium-pipe"):remove_unlock("py-storage-tanks"):add_unlock("niobium") RECIPE("niobium-pipe-to-ground"):remove_unlock("py-storage-tanks"):add_unlock("niobium") data.raw.valve["py-overflow-valve"].flow_rate = data.raw.valve["py-overflow-valve"].flow_rate * 10 -data.raw.valve["py-underflow-valve"].flow_rate = data.raw.valve["ppy-underflow-valve"].flow_rate * 10 +data.raw.valve["py-underflow-valve"].flow_rate = data.raw.valve["py-underflow-valve"].flow_rate * 10