Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
test
  • Loading branch information
Ediblebomb committed Nov 12, 2023
1 parent 485afd9 commit c739931
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions code/modules/mob/living/living_healthscan.dm
Original file line number Diff line number Diff line change
Expand Up @@ -441,7 +441,7 @@ GLOBAL_LIST_INIT(known_implants, subtypesof(/obj/item/implant))

data["ssd"] = null //clear the data in case we have an old input from a previous scan
if(target_mob.getBrainLoss() >= 100 || !target_mob.has_brain())
data["ssd"] = "Subject is brain-dead."
data["ssd"] = "Subject has taken extreme amounts of brain damage."
else if(target_mob.has_brain() && target_mob.stat != DEAD && ishuman(target_mob))
if(!target_mob.key)
data["ssd"] = "No soul detected." // they ghosted
Expand Down Expand Up @@ -586,7 +586,7 @@ GLOBAL_LIST_INIT(known_implants, subtypesof(/obj/item/implant))
if(!D.hidden[SCANNER])
dat += "\t<span class='scannerb'> *Warning: [D.form] Detected</span><span class='scanner'>\nName: [D.name].\nType: [D.spread].\nStage: [D.stage]/[D.max_stages].\nPossible Cure: [D.cure]</span>\n"
if (src.getBrainLoss() >= 100 || !src.has_brain())
dat += "\t<span class='scanner'> *Subject is <b>brain dead</b></span>.\n"
dat += "\t<span class='scanner'> *Subject has taken extreme amounts of <b>brain damage</b></span>.\n"

if(src.has_brain() && src.stat != DEAD && ishuman(src))
if(!src.key)
Expand Down

0 comments on commit c739931

Please sign in to comment.