Fix Runtime in garbage.dm,337:

/obj/item/device/transfer_valve destroy proc was called multiple times, likely due to a qdel loop in the Destroy logic
This commit is contained in:
Leshana
2020-03-30 16:53:55 -04:00
parent e393b71dff
commit 2e4dcabd09
@@ -78,7 +78,6 @@ var/list/global/tank_gauge_cache = list()
if(istype(loc, /obj/item/device/transfer_valve))
var/obj/item/device/transfer_valve/TTV = loc
TTV.remove_tank(src)
qdel(TTV)
. = ..()