From 199f6d91f18aa6e01d72d9f05d8ba0d36307ebcd Mon Sep 17 00:00:00 2001 From: Markolie Date: Sun, 23 Oct 2016 02:24:53 +0200 Subject: [PATCH] Fix sans HTML parsing --- code/modules/mob/living/carbon/human/say.dm | 2 +- code/modules/mob/living/say.dm | 3 --- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/code/modules/mob/living/carbon/human/say.dm b/code/modules/mob/living/carbon/human/say.dm index 72e6ff63314..26ca4af83e8 100644 --- a/code/modules/mob/living/carbon/human/say.dm +++ b/code/modules/mob/living/carbon/human/say.dm @@ -142,7 +142,7 @@ message = uppertext(message) verb = "yells loudly" - if(locate(/obj/item/organ/internal/cyberimp/brain/clown_voice) in internal_organs) + if((COMIC in mutations) || (locate(/obj/item/organ/internal/cyberimp/brain/clown_voice) in internal_organs)) message = "[message]" returns[1] = message diff --git a/code/modules/mob/living/say.dm b/code/modules/mob/living/say.dm index 2f44caf161a..3987b709e3e 100644 --- a/code/modules/mob/living/say.dm +++ b/code/modules/mob/living/say.dm @@ -80,9 +80,6 @@ proc/get_radio_key_from_channel(var/channel) verb = "stammers" speech_problem_flag = 1 - if(COMIC in mutations) - message = "[message]" - if(!IsVocal()) message = "" speech_problem_flag = 1