From b59aa8cb757c8d30e44b1c0684dd1dd1c6b8936a Mon Sep 17 00:00:00 2001 From: alex-gh Date: Tue, 11 Sep 2018 17:38:14 +0200 Subject: [PATCH] Autopsy scanner now prints all times in human readable format. --- code/game/objects/items/devices/autopsy.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/objects/items/devices/autopsy.dm b/code/game/objects/items/devices/autopsy.dm index daaa90a2664..929d7372752 100644 --- a/code/game/objects/items/devices/autopsy.dm +++ b/code/game/objects/items/devices/autopsy.dm @@ -146,7 +146,7 @@ if(damaging_weapon) scan_data += "Severity: [damage_desc]
" scan_data += "Hits by weapon: [total_hits]
" - scan_data += "Approximate time of wound infliction: [station_time(age)]
" + scan_data += "Approximate time of wound infliction: [station_time_timestamp("hh:mm", age)]
" scan_data += "Affected limbs: [D.organ_names]
" scan_data += "Possible weapons:
" for(var/weapon_name in weapon_chances)