Security / PseudoCargo Expansion

This commit is contained in:
Mechoid
2019-11-24 14:22:25 -08:00
committed by VirgoBot
parent b34f14b3cc
commit 99bc3dcdbc
83 changed files with 2722 additions and 67 deletions
@@ -12,7 +12,7 @@
var/closed = 0
var/scanning = 0
var/scanner_progress = 0
var/scanner_rate = 2.50
var/scanner_rate = 5
var/last_process_worldtime = 0
var/report_num = 0
@@ -32,7 +32,7 @@
user << "<span class='notice'>The microscope whirrs as you examine \the [sample].</span>"
if(!do_after(user, 25) || !sample)
if(!do_after(user, 2 SECONDS) || !sample)
user << "<span class='notice'>You stop examining \the [sample].</span>"
return
@@ -71,8 +71,8 @@
report.info += "Surface analysis has determined unique fingerprint strings:<br><br>"
for(var/prints in card.evidence)
report.info += "<span class='notice'>Fingerprint string: </span>"
if(!is_complete_print(prints))
report.info += "INCOMPLETE PRINT"
if(!is_complete_print(card.evidence[prints]))
report.info += "INCOMPLETE PRINT:[card.evidence[prints]]"
else
report.info += "[prints]"
report.info += "<br>"