bunch of misc fixes (#17031)

* bunch of misc fixes

* .

* more refs also new ref tracking from chomp

* oups

* eh
This commit is contained in:
Kashargul
2025-02-05 13:53:53 -05:00
committed by GitHub
parent 59a6e06ab5
commit af85f098cd
14 changed files with 243 additions and 15 deletions
+4 -4
View File
@@ -71,28 +71,28 @@
return 1
/obj/machinery/atmospherics/pipe/return_air()
if(!parent)
if(!QDELETED(src) || !parent)
parent = new /datum/pipeline()
parent.build_pipeline(src)
return parent.air
/obj/machinery/atmospherics/pipe/build_network()
if(!parent)
if(!QDELETED(src) || !parent)
parent = new /datum/pipeline()
parent.build_pipeline(src)
return parent.return_network()
/obj/machinery/atmospherics/pipe/network_expand(datum/pipe_network/new_network, obj/machinery/atmospherics/pipe/reference)
if(!parent)
if(!QDELETED(src) || !parent)
parent = new /datum/pipeline()
parent.build_pipeline(src)
return parent.network_expand(new_network, reference)
/obj/machinery/atmospherics/pipe/return_network(obj/machinery/atmospherics/reference)
if(!parent)
if(!QDELETED(src) || !parent)
parent = new /datum/pipeline()
parent.build_pipeline(src)