Skip to content

Commit

Permalink
Fingerprint Card Usage Fixes (#109)
Browse files Browse the repository at this point in the history
Fix repairs fingerprints card reading in microscope. Now it works correctly - when u scan card in microscope, u can see paper with fingerprint data.
  • Loading branch information
SmellsLikeAFox authored and Bizzonium committed Mar 24, 2022
1 parent 8b1bc23 commit b2f2333
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
/obj/item/forensics/sample/print/merge_evidence_list(var/list/new_evidence)
for(var/datum/fingerprint/newprint in new_evidence)
for(var/datum/fingerprint/F in evidence)
if(F.merge(newprint))
if(F.merge(newprint))
new_evidence -= newprint
break
..()
Expand All @@ -42,7 +42,7 @@
F.full_print = M.get_full_print()
F.completeness = 100
var/datum/forensics/fingerprints/FP = new()
FP.data = F
FP.data = list(F)
merge_evidence_list(list(FP))
SetName("[initial(name)] (\the [M])")
update_icon()
Expand Down

0 comments on commit b2f2333

Please sign in to comment.