Skip to content

Commit

Permalink
fixes another unnecessarily long emote
Browse files Browse the repository at this point in the history
  • Loading branch information
GrrrKitten committed Jul 7, 2024
1 parent 6d68fca commit dd9fede
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions code/modules/organs/limbs.dm
Original file line number Diff line number Diff line change
Expand Up @@ -1204,8 +1204,8 @@ treat_grafted var tells it to apply to grafted but unsalved wounds, for burn kit
if(is_broken())
if(prob(15))
owner.drop_inv_item_on_ground(c_hand)
var/emote_scream = pick("screams in pain and", "lets out a sharp cry and", "cries out and")
owner.emote("me", message = "[(!owner.pain.feels_pain) ? "" : emote_scream ] drops what they were holding in their [hand_name]!")
var/emote_scream = pick("winces in pain,", "cries out,")
owner.emote("me", message = "[(!owner.pain.feels_pain) ? "" : emote_scream ] dropping what was in their [hand_name]!")
if(is_malfunctioning())
if(prob(10))
owner.drop_inv_item_on_ground(c_hand)
Expand Down

0 comments on commit dd9fede

Please sign in to comment.