From 03b8be52fab2254277aa382ba089598e4a54cbcd Mon Sep 17 00:00:00 2001 From: Tastyfish Date: Mon, 26 Dec 2011 12:02:57 -0500 Subject: [PATCH] capitalize first letter of says and whispers like old bs12 --- code/modules/mob/living/carbon/human/whisper.dm | 2 ++ code/modules/mob/living/say.dm | 2 ++ 2 files changed, 4 insertions(+) diff --git a/code/modules/mob/living/carbon/human/whisper.dm b/code/modules/mob/living/carbon/human/whisper.dm index a1d4db99638..3604b519902 100644 --- a/code/modules/mob/living/carbon/human/whisper.dm +++ b/code/modules/mob/living/carbon/human/whisper.dm @@ -50,6 +50,8 @@ message = dd_replaceText(message, "u", "µ") message = dd_replaceText(message, "b", "ß") + message = capitalize(message) + if (src.stuttering) message = stutter(message) if (src.slurring) diff --git a/code/modules/mob/living/say.dm b/code/modules/mob/living/say.dm index f33818cb332..43a8fc9f0d6 100644 --- a/code/modules/mob/living/say.dm +++ b/code/modules/mob/living/say.dm @@ -132,6 +132,8 @@ if (!message) return + message = capitalize(message) //capitalize the first letter of what they actually say + // :downs: if (brainloss >= 60) message = dd_replacetext(message, " am ", " ")