mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-11 18:53:06 +00:00
Tried to resolve ID cards not GCing properly. Sorted some awful : uses instead.
This commit is contained in:
@@ -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))
|
||||||
|
|||||||
Reference in New Issue
Block a user