Skip to content

Commit

Permalink
small wording fix in broken bone stuff (#3648)
Browse files Browse the repository at this point in the history
🆑
fix:typo in broken bone thing

/🆑
  • Loading branch information
Erikafox authored Oct 26, 2024
1 parent 9ddaf23 commit 0e7ccda
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions code/modules/mob/living/carbon/human/life.dm
Original file line number Diff line number Diff line change
Expand Up @@ -347,17 +347,17 @@
if(istype(L) && L.bone_status == BONE_FLAG_BROKEN && held_items[1] && prob(30))
force_scream()
if(!HAS_TRAIT(src, TRAIT_ANALGESIA))
visible_message("<span class='warning'>[src] screams and lets go of [held_items[1]] in pain.</span>", "<span class='userdanger'>A horrible pain in your [parse_zone(L)] makes it impossible to hold [held_items[1]]!</span>")
visible_message(span_warning("[src] screams and lets go of [held_items[1]] in pain."), span_userdanger("A horrible pain in your [parse_zone(L)] makes it impossible to hold [held_items[1]]!"))
else
visible_message(span_notice("[src] flinches and lets go of [held_items[1]]."),span_notice("A sudden weakness in your [parse_zone(L)] makes it impossible to grasp [held_items[1]]!)"))
visible_message(span_notice("[src] flinches and lets go of [held_items[1]]."),span_notice("A sudden weakness in your [parse_zone(L)] makes it impossible to grasp [held_items[1]]!"))
dropItemToGround(held_items[1])

if(istype(R) && R.bone_status == BONE_FLAG_BROKEN && held_items[2] && prob(30))
force_scream()
if(!HAS_TRAIT(src, TRAIT_ANALGESIA))
visible_message("<span class='warning'>[src] screams and lets go of [held_items[1]] in pain.</span>", "<span class='userdanger'>A horrible pain in your [parse_zone(R)] makes it impossible to hold [held_items[1]]!</span>")
visible_message(span_warning("[src] screams and lets go of [held_items[1]] in pain."), span_userdanger("A horrible pain in your [parse_zone(R)] makes it impossible to hold [held_items[1]]!"))
else
visible_message(span_notice("[src] flinches and lets go of [held_items[1]]."),span_notice("A sudden weakness in your [parse_zone(R)] makes it impossible to grasp [held_items[1]]!)"))
visible_message(span_notice("[src] flinches and lets go of [held_items[1]]."),span_notice("A sudden weakness in your [parse_zone(R)] makes it impossible to grasp [held_items[1]]!"))
dropItemToGround(held_items[2])

#undef THERMAL_PROTECTION_HEAD
Expand Down

0 comments on commit 0e7ccda

Please sign in to comment.