mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-29 16:18:01 +01:00
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:
@@ -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)
|
||||
. = ..()
|
||||
|
||||
Reference in New Issue
Block a user