From 45fcfeb09ddfaa99dc5213e24ea38266986e3010 Mon Sep 17 00:00:00 2001 From: GrrrKitten Date: Sun, 7 Jul 2024 19:02:30 -0400 Subject: [PATCH] tones down hurt lung emotes by 90% --- code/modules/organs/organ_internal.dm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/code/modules/organs/organ_internal.dm b/code/modules/organs/organ_internal.dm index 16ea84b82ce3..d4ae18d89e71 100644 --- a/code/modules/organs/organ_internal.dm +++ b/code/modules/organs/organ_internal.dm @@ -146,8 +146,9 @@ return if(organ_status >= ORGAN_BRUISED) if(prob(5)) - owner.emote(pick("bloodcough", "gasp", "wheeze")) owner.losebreath += 15 + if(prob(10)) + owner.emote(pick("bloodcough", "gasp", "wheeze")) if(organ_status >= ORGAN_BROKEN) if(prob(12)) owner.emote("badlung")