diff --git a/code/game/objects/items/devices/scanners.dm b/code/game/objects/items/devices/scanners.dm index cdded7e418ef..1f4b2ae6f6a2 100644 --- a/code/game/objects/items/devices/scanners.dm +++ b/code/game/objects/items/devices/scanners.dm @@ -226,12 +226,12 @@ GENE SCANNER if(length(damaged)>0 || oxy_loss>0 || tox_loss>0 || fire_loss>0) var/dmgreport = "General status:\
Damage: | \ +Damage: | \Brute | \Burn | \Toxin | \Suffocation |
Overall: | \ +|||||
Overall: | \[CEILING(brute_loss,1)] | \[CEILING(fire_loss,1)] | \[CEILING(tox_loss,1)] | \ @@ -239,7 +239,7 @@ GENE SCANNER for(var/o in damaged) var/obj/item/bodypart/org = o //head, left arm, right arm, etc. - dmgreport += "||
[capitalize(parse_zone(org.body_zone))]: | \ + dmgreport += "|||||
[capitalize(parse_zone(org.body_zone))]: | \[(org.brute_dam > 0) ? "[CEILING(org.brute_dam,1)]" : "0"] | \[(org.burn_dam > 0) ? "[CEILING(org.burn_dam,1)]" : "0"] |