From 0a62766f986fd4986556def09a1f4e4ea7a5b111 Mon Sep 17 00:00:00 2001 From: Vanilla1040 <94153240+Vanilla1040@users.noreply.github.com> Date: Sun, 14 Jun 2026 03:51:49 +0200 Subject: [PATCH] Fixes the plumping pump (#5789) ## About The Pull Request See title ## Why It's Good For The Game Fix = Good ## Proof Of Testing image ## Changelog :cl: fix: Fixes the pump for the plumping device /:cl: --- .../liquids/code/liquid_systems/liquid_plumbers.dm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/modular_skyrat/modules/liquids/code/liquid_systems/liquid_plumbers.dm b/modular_skyrat/modules/liquids/code/liquid_systems/liquid_plumbers.dm index 951563bac27..6539d940719 100644 --- a/modular_skyrat/modules/liquids/code/liquid_systems/liquid_plumbers.dm +++ b/modular_skyrat/modules/liquids/code/liquid_systems/liquid_plumbers.dm @@ -178,9 +178,9 @@ icon_state = "active_input" base_icon_state = "active_input" -/obj/machinery/plumbing/floor_pump/input/Initialize(mapload, bolt, layer) +/obj/machinery/plumbing/floor_pump/input/Initialize(mapload, layer) . = ..() - AddComponent(/datum/component/plumbing/simple_supply, bolt, layer || duct_layer) + AddComponent(/datum/component/plumbing/simple_supply, layer) /obj/machinery/plumbing/floor_pump/input/are_reagents_ready() return reagents.total_volume < reagents.maximum_volume @@ -235,9 +235,9 @@ MAPPING_DIRECTIONAL_HELPERS(/obj/machinery/plumbing/floor_pump/input/on/waste, 0 /// Max pressure on the turf before we stop pumping. var/max_ext_kpa = WARNING_HIGH_PRESSURE -/obj/machinery/plumbing/floor_pump/output/Initialize(mapload, bolt, layer) +/obj/machinery/plumbing/floor_pump/output/Initialize(mapload, layer) . = ..() - AddComponent(/datum/component/plumbing/simple_demand, bolt, layer || duct_layer) + AddComponent(/datum/component/plumbing/simple_demand, layer) /obj/machinery/plumbing/floor_pump/output/examine(mob/user) . = ..()