Fixes the plumping pump (#5789)

## About The Pull Request

See title

## Why It's Good For The Game

Fix = Good

## Proof Of Testing

<img width="505" height="460" alt="image"
src="https://github.com/user-attachments/assets/c6e05642-7597-4934-83b9-9ddb415aff1e"
/>

## Changelog

🆑
fix: Fixes the pump for the plumping device
/🆑
This commit is contained in:
Vanilla1040
2026-06-13 21:51:49 -04:00
committed by GitHub
parent 45d4a1b379
commit 0a62766f98
@@ -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)
. = ..()