Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

makes splint breaking message bigger #6648

Merged
merged 1 commit into from
Jul 8, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion code/modules/organs/limbs.dm
Original file line number Diff line number Diff line change
Expand Up @@ -477,7 +477,7 @@ This function completely restores a damaged organ to perfect condition.
if(!(status & LIMB_SPLINTED_INDESTRUCTIBLE) && (status & LIMB_SPLINTED) && damage > 5 && prob(50 + damage * 2.5)) //If they have it splinted, the splint won't hold.
status &= ~LIMB_SPLINTED
playsound(get_turf(loc), 'sound/items/splintbreaks.ogg', 20)
to_chat(owner, SPAN_DANGER("The splint on your [display_name] comes apart!"))
to_chat(owner, SPAN_HIGHDANGER("The splint on your [display_name] comes apart!"))
owner.pain.apply_pain(PAIN_BONE_BREAK_SPLINTED)
owner.update_med_icon()

Expand Down
Loading