Revert "More fingerprint fixes"

This reverts commit c11502eb53 due to a bug where blood appears on objects when the blood_DNA variable is not null.
This commit is contained in:
Albert Iordache
2012-02-05 16:22:48 +02:00
parent e2e4f3d3aa
commit ec77e9da19
3 changed files with 4 additions and 10 deletions

View File

@@ -718,9 +718,7 @@ turf/proc/add_bloody_footprints(mob/living/carbon/human/M,leaving,d,info)
this.blood_DNA.len++
this.blood_DNA[this.blood_DNA.len] = list(M.dna.unique_enzymes,M.dna.b_type)
else
var/list/blood_DNA_temp[1]
blood_DNA_temp[1] = list(M.dna.unique_enzymes, M.dna.b_type)
this.blood_DNA = blood_DNA_temp
this.blood_DNA = list(list(M.dna.unique_enzymes,M.dna.b_type))
proc/get_tracks(mob/M)
if(istype(M,/mob/living))