From 4a4b46817dbeacd348a75d3e700bb014d8eeb6f1 Mon Sep 17 00:00:00 2001 From: MrMelbert <51863163+MrMelbert@users.noreply.github.com> Date: Wed, 28 Dec 2022 11:58:14 -0600 Subject: [PATCH] Fixes DNA scanner not picking up fibers (#72295) ## About The Pull Request Fixes #72293 Copy paste error ## Why It's Good For The Game Fibers are important ## Changelog :cl: Melbert fix: Det's scanner sees fibers again /:cl: Co-authored-by: Fikou <23585223+Fikou@users.noreply.github.com> --- code/modules/detectivework/scanner.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/detectivework/scanner.dm b/code/modules/detectivework/scanner.dm index 2b67393a8dc..14107973398 100644 --- a/code/modules/detectivework/scanner.dm +++ b/code/modules/detectivework/scanner.dm @@ -96,7 +96,7 @@ // The keys are the headers used for it, and the value is a list of each line printed var/list/det_data = list() var/list/blood = GET_ATOM_BLOOD_DNA(A) - det_data[DETSCAN_CATEGORY_FIBER] = GET_ATOM_BLOOD_DNA(A) + det_data[DETSCAN_CATEGORY_FIBER] = GET_ATOM_FIBRES(A) var/target_name = A.name