From 731efa5b6669bcbfff8ad132268ace29cdca7e76 Mon Sep 17 00:00:00 2001 From: nervere <26285377+nervere@users.noreply.github.com> Date: Wed, 13 Feb 2019 19:23:23 -0500 Subject: [PATCH] Fix only mimes being able to scream (#42766) --- code/modules/mob/living/carbon/human/emote.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/carbon/human/emote.dm b/code/modules/mob/living/carbon/human/emote.dm index 083591814a8..3d39eb53049 100644 --- a/code/modules/mob/living/carbon/human/emote.dm +++ b/code/modules/mob/living/carbon/human/emote.dm @@ -57,7 +57,7 @@ if(!ishuman(user)) return var/mob/living/carbon/human/H = user - if(!H.mind?.miming) + if(H.mind?.miming) return if(ishumanbasic(H) || iscatperson(H)) if(user.gender == FEMALE)