From 26969c2b6a3a20e3ad7893b4d19a362e453de41d Mon Sep 17 00:00:00 2001 From: AndroBetel <44546836+AndroBetel@users.noreply.github.com> Date: Sun, 7 Jul 2024 17:02:44 +0300 Subject: [PATCH] Update limbs.dm --- code/modules/organs/limbs.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/organs/limbs.dm b/code/modules/organs/limbs.dm index 37ebac207c28..b4086ee898e2 100644 --- a/code/modules/organs/limbs.dm +++ b/code/modules/organs/limbs.dm @@ -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()