Fixes #2312. Shamelessly lifted from Arokha of Vorestation.

This commit is contained in:
MagmaRam
2016-11-11 18:49:05 -06:00
parent b0193fad78
commit 63fa9bb566

View File

@@ -410,6 +410,13 @@
preserve = 1
break
if(istype(W,/obj/item/weapon/implant/health))
for(var/obj/machinery/computer/cloning/com in world)
for(var/datum/dna2/record/R in com.records)
if(R.implant == W)
qdel(R)
qdel(W)
if(!preserve)
qdel(W)
else