From 73abde1c3ff281d3642721456ada3c96d620bba9 Mon Sep 17 00:00:00 2001 From: SoundScopes Date: Fri, 9 Jan 2015 17:12:02 +0000 Subject: [PATCH] Space language whisper logs --- code/modules/mob/hear_say.dm | 3 ++- code/modules/mob/living/carbon/human/whisper.dm | 4 ++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/code/modules/mob/hear_say.dm b/code/modules/mob/hear_say.dm index 3f8899ac..2ef4e08f 100644 --- a/code/modules/mob/hear_say.dm +++ b/code/modules/mob/hear_say.dm @@ -41,7 +41,8 @@ var/track = null if(istype(src, /mob/dead/observer)) if(italics && client.prefs.toggles & CHAT_GHOSTRADIO) - return + if(!verb == ("whispers" || " quietly" || " softly")) + return if(speaker_name != speaker.real_name && speaker.real_name) speaker_name = "[speaker.real_name] ([speaker_name])" track = "(follow) " diff --git a/code/modules/mob/living/carbon/human/whisper.dm b/code/modules/mob/living/carbon/human/whisper.dm index 06c84496..6ecfd8f7 100644 --- a/code/modules/mob/living/carbon/human/whisper.dm +++ b/code/modules/mob/living/carbon/human/whisper.dm @@ -6,7 +6,7 @@ usr << "\red Speech is currently admin-disabled." return - log_whisper("[src.name]/[src.key] : [message]") +// log_whisper("[src.name]/[src.key] : [message]") if (src.client) if (src.client.prefs.muted & MUTE_IC) @@ -99,7 +99,7 @@ if (!(M.client)) continue if(M.stat == DEAD && M.client && (M.client.prefs.toggles & CHAT_GHOSTEARS)) - listening |= M //I want to see if this does anything for ghosts +// listening |= M //I want to see if this does anything for ghosts M.hear_say(message, verb, speaking, alt_name, italics, src) //Pass whispers on to anything inside the immediate listeners.