Fixed scanner export

This commit is contained in:
Artur
2020-07-13 16:20:21 +03:00
parent 0867f92c4a
commit d1b3990875

View File

@@ -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("<center><B>Forensic Record - (FR-[])</B></center><HR><BR>", frNum)
P.info += jointext(log, "<BR>")
P.info += "<HR><B>Notes:</B><BR>"
P.update_icon()
if(ismob(loc))
var/mob/M = loc
M.put_in_hands(P)