Skip to content

Commit

Permalink
Update examine.dm
Browse files Browse the repository at this point in the history
  • Loading branch information
Filatelele authored Sep 25, 2024
1 parent 8cf1126 commit 7666eed
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions code/modules/mob/living/carbon/human/examine.dm
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,9 @@

msg += "<br>"

if (isundead(src) && !isfakeliving(src) && (!skipface || (!skipgloves && !gloves) || (!skipjumpsuit && !w_uniform) || (!skipshoes && !shoes)))
msg += FONT_LARGE(SPAN_DANGER("[T.He] looks like a month-old corpse.\n"))

// uniform
if(w_uniform && !skipjumpsuit)
msg += "[T.He] [T.is] wearing [w_uniform.get_examine_line(!skipjumpsuitaccessories)].\n"
Expand Down Expand Up @@ -339,9 +342,6 @@

msg += applying_pressure

if (isundead(src) && !isfakeliving(src) && (!skipface || (!skipgloves && !gloves) || (!skipjumpsuit && !w_uniform) || (!skipshoes && !shoes)))
msg += SPAN("danger", "[T.He] looks like a month-old corpse.\n")

if (pose)
if( findtext(pose,".",length(pose)) == 0 && findtext(pose,"!",length(pose)) == 0 && findtext(pose,"?",length(pose)) == 0 )
pose = addtext(pose,".") //Makes sure all emotes end with a period.
Expand Down

0 comments on commit 7666eed

Please sign in to comment.