Skip to content

Commit

Permalink
Update scanners.dm
Browse files Browse the repository at this point in the history
  • Loading branch information
PowerfulBacon committed May 26, 2024
1 parent bd1e78b commit 0c03713
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions code/game/objects/items/devices/scanners.dm
Original file line number Diff line number Diff line change
Expand Up @@ -468,13 +468,13 @@ GENE SCANNER
blood_type = R.name
else
blood_type = blood_id
blood_type = "[bloodtype] ([jointext(get_safe_blood(blood_type), ", ")])"
var/blood_info = "[blood_type] ([jointext(get_safe_blood(blood_type), ", ")])"
if(C.blood_volume <= BLOOD_VOLUME_SAFE && C.blood_volume > BLOOD_VOLUME_OKAY)
message += "<span class='alert'>Blood level: LOW [blood_percent] %, [C.blood_volume] cl,</span> <span class='info'>type: [blood_type]</span>"
message += "<span class='alert'>Blood level: LOW [blood_percent] %, [C.blood_volume] cl,</span> <span class='info'>type: [blood_info]</span>"
else if(C.blood_volume <= BLOOD_VOLUME_OKAY)
message += "<span class='alert'>Blood level: <b>CRITICAL [blood_percent] %</b>, [C.blood_volume] cl,</span> <span class='info'>type: [blood_type]</span>"
message += "<span class='alert'>Blood level: <b>CRITICAL [blood_percent] %</b>, [C.blood_volume] cl,</span> <span class='info'>type: [blood_info]</span>"
else
message += "<span class='info'>Blood level: [blood_percent] %, [C.blood_volume] cl, type: [blood_type]</span>"
message += "<span class='info'>Blood level: [blood_percent] %, [C.blood_volume] cl, type: [blood_info]</span>"

var/list/cyberimp_detect = list()
for(var/obj/item/organ/cyberimp/CI in C.internal_organs)
Expand Down

0 comments on commit 0c03713

Please sign in to comment.