From 7c4fbce245cd38687222145604af3eb6095f4e8d Mon Sep 17 00:00:00 2001 From: NikNakFlak Date: Wed, 27 Jul 2016 04:43:25 -0700 Subject: [PATCH] Proper fix thanks to Antur --- code/modules/mob/living/carbon/human/whisper.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/modules/mob/living/carbon/human/whisper.dm b/code/modules/mob/living/carbon/human/whisper.dm index 717ac8a1666..4b4d0b45142 100644 --- a/code/modules/mob/living/carbon/human/whisper.dm +++ b/code/modules/mob/living/carbon/human/whisper.dm @@ -42,7 +42,6 @@ var/message_len = length(message) message = copytext(message, 1, health_diff) + "[message_len > health_diff ? "-.." : "..."]" message = Ellipsis(message, 10, 1) - whispers = "whispers in their final breath" message = treat_message(message) @@ -60,12 +59,13 @@ watching -= eavesdropping var/rendered - - rendered = "[src.name] whispers something." + whispers = critical ? "whispers something in their final breath." : "whispers something." + rendered = "[src.name] [whispers]" for(var/mob/M in watching) M.show_message(rendered, 2) var/spans = list(SPAN_ITALICS) + whispers = critical ? "whispers in their final breath" : "whispers" rendered = "[GetVoice()][alt_name] [whispers], \"[attach_spans(message, spans)]\"" for(var/atom/movable/AM in listening)