From 5c5225cd156e182be138cf1c46900ef6534419d3 Mon Sep 17 00:00:00 2001 From: ZomgPonies Date: Sat, 23 Nov 2013 10:42:46 -0500 Subject: [PATCH] Mimes shouldnt be able to speak! --- code/modules/mob/living/carbon/human/say.dm | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/code/modules/mob/living/carbon/human/say.dm b/code/modules/mob/living/carbon/human/say.dm index ba6733010b0..d55db70273d 100644 --- a/code/modules/mob/living/carbon/human/say.dm +++ b/code/modules/mob/living/carbon/human/say.dm @@ -1,4 +1,6 @@ /mob/living/carbon/human/say(var/message) + if(miming) + return if(wear_mask) if(istype(wear_mask, /obj/item/clothing/mask/gas/voice/space_ninja) && wear_mask:voice == "Unknown") @@ -35,6 +37,8 @@ message = slur(message) ..(message) + + /mob/living/carbon/human/say_understands(var/other,var/datum/language/speaking = null) if(has_brain_worms()) //Brain worms translate everything. Even mice and alien speak.