This commit is contained in:
joep van der velden
2019-03-30 17:31:54 +01:00
parent a5401b40f1
commit 451253dc5b
+6 -7
View File
@@ -396,13 +396,12 @@
return
for(var/obj/machinery/clonepod/pod in pods)
if(pod.occupant)
if(pod.occupant.ckey == null) // Uses soulhooks
for(var/datum/soullink/soulhook/hook in pod.sharedSoulhooks) //Check the soul hooks to see if the to be cloned person is in here
if(hook.soulowner.ckey == subject.ckey)
scantemp = "Subject already getting cloned."
SSnanoui.update_uis(src)
return
if(pod.occupant && pod.occupant.ckey == null)
for(var/datum/soullink/soulhook/hook in pod.sharedSoulhooks) //Check the soul hooks to see if the to be cloned person is in here
if(hook.soulowner.ckey == subject.ckey)
scantemp = "Subject already getting cloned."
SSnanoui.update_uis(src)
return
subject.dna.check_integrity()