Skip to content

Commit

Permalink
Fix ungrammatical limb status messages
Browse files Browse the repository at this point in the history
  • Loading branch information
out-of-phaze committed Jul 6, 2024
1 parent 17d66a6 commit f1a896d
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions code/modules/mob/living/human/human_attackhand.dm
Original file line number Diff line number Diff line change
Expand Up @@ -77,16 +77,16 @@
status += "<b>bleeding</b>"
if(org.is_dislocated())
status += "dislocated"
if(org.status & ORGAN_BROKEN & org.can_feel_pain())
status += "hurts when touched"
if(org.status & ORGAN_BROKEN && org.can_feel_pain())
status += "painful to the touch"

if(org.status & ORGAN_DEAD)
if(BP_IS_PROSTHETIC(org) || BP_IS_CRYSTAL(org))
status += "is irrecoverably damaged"
status += "irrecoverably damaged"
else
status += "is grey and necrotic"
status += "grey and necrotic"
else if(org.damage >= org.max_damage && org.germ_level >= INFECTION_LEVEL_TWO)
status += "is likely beyond saving, and has begun to decay"
status += "likely beyond saving and decay has set in"
if(!org.is_usable() || org.is_dislocated())
status += "dangling uselessly"

Expand Down

0 comments on commit f1a896d

Please sign in to comment.