Tried to resolve ID cards not GCing properly. Sorted some awful : uses instead.

This commit is contained in:
PsiOmega
2015-07-13 10:18:08 +02:00
parent 750c3f9e66
commit 9ba21f3079

View File

@@ -145,9 +145,10 @@
..() ..()
spawn(30) spawn(30)
if(istype(loc, /mob/living/carbon/human)) if(istype(loc, /mob/living/carbon/human))
blood_type = loc:dna:b_type var/mob/living/carbon/human/H = loc
dna_hash = loc:dna:unique_enzymes blood_type = H.dna.b_type
fingerprint_hash = md5(loc:dna:uni_identity) dna_hash = H.dna.unique_enzymes
fingerprint_hash = md5(H.dna.uni_identity)
/obj/item/weapon/card/id/attack_self(mob/user as mob) /obj/item/weapon/card/id/attack_self(mob/user as mob)
for(var/mob/O in viewers(user, null)) for(var/mob/O in viewers(user, null))