From 84ca206fa98c8c13e978384b104468e899b9f8fa Mon Sep 17 00:00:00 2001 From: CHOMPStation2StaffMirrorBot <94713762+CHOMPStation2StaffMirrorBot@users.noreply.github.com> Date: Sun, 8 Mar 2026 16:28:25 -0700 Subject: [PATCH] [MIRROR] Missing nulltest on detective tool (#12497) Co-authored-by: Will <7099514+Willburd@users.noreply.github.com> --- code/modules/detectivework/tools/scanner.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/detectivework/tools/scanner.dm b/code/modules/detectivework/tools/scanner.dm index 07dbe0684e..5925ed53bd 100644 --- a/code/modules/detectivework/tools/scanner.dm +++ b/code/modules/detectivework/tools/scanner.dm @@ -68,7 +68,7 @@ return 0 //General - if (!A.forensic_data?.has_prints() && !A.forensic_data?.has_fibres() && !A.forensic_data.has_blooddna()) + if (!A.forensic_data?.has_prints() && !A.forensic_data?.has_fibres() && !A.forensic_data?.has_blooddna()) user.visible_message("\The [user] scans \the [A] with \a [src], the air around [user.gender == MALE ? "him" : "her"] humming[prob(70) ? " gently." : "."]" ,\ span_warning("Unable to locate any fingerprints, materials, fibers, or blood on [A]!"),\ "You hear a faint hum of electrical equipment.")