This commit is contained in:
Fluffy
2024-03-29 19:46:17 +00:00
committed by GitHub
parent 845630fda5
commit 91bf4554d8
3 changed files with 50 additions and 1 deletions
+2
View File
@@ -132,3 +132,5 @@
// Sets the UI host to the transfer valve if its mounted on a transfer_valve
if(istype(loc,/obj/item/device/transfer_valve))
return loc
return holder || .
+6 -1
View File
@@ -164,13 +164,18 @@
var/turf/T = get_turf(src)
if(!T)
return FALSE
if(a_left)
a_left.holder = null
a_left.forceMove(T)
a_left = null
if(a_right)
a_right.holder = null
a_right.forceMove(T)
QDEL_IN(src, 1)
a_right = null
qdel(src)
/obj/item/device/assembly_holder/proc/process_activation(var/obj/D, var/normal = 1, var/special = 1)