From d1b3990875ac7befb2d73666067d43fec9b4e9a4 Mon Sep 17 00:00:00 2001 From: Artur Date: Mon, 13 Jul 2020 16:20:21 +0300 Subject: [PATCH] Fixed scanner export --- code/modules/detectivework/scanner.dm | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/code/modules/detectivework/scanner.dm b/code/modules/detectivework/scanner.dm index 7d3837ae68..3ee1990d14 100644 --- a/code/modules/detectivework/scanner.dm +++ b/code/modules/detectivework/scanner.dm @@ -47,12 +47,12 @@ //This could be a global count like sec and med record printouts. See GLOB.data_core.medicalPrintCount AKA datacore.dm var frNum = ++forensicPrintCount - P.name = text(" FR-[] 'Forensic Record'", frNum) - var/list/text = new - text+= text("* _Forensic Record - (FR-[])_", frNum) - text += log.Join("\n") - text += "* _Notes:_" - P.setText(text.Join("\n")) + P.name = text("FR-[] 'Forensic Record'", frNum) + P.info = text("
Forensic Record - (FR-[])


", frNum) + P.info += jointext(log, "
") + P.info += "
Notes:
" + P.update_icon() + if(ismob(loc)) var/mob/M = loc M.put_in_hands(P)