From 57e7a6db3fc5ef173de07c37aae45cc8dff13964 Mon Sep 17 00:00:00 2001 From: datlo Date: Tue, 1 Jan 2019 16:00:04 +0000 Subject: [PATCH] prevent mimes from getting the implant --- code/modules/mob/living/carbon/human/species/grey.dm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/code/modules/mob/living/carbon/human/species/grey.dm b/code/modules/mob/living/carbon/human/species/grey.dm index 0a0ac0d8c49..dda521b702a 100644 --- a/code/modules/mob/living/carbon/human/species/grey.dm +++ b/code/modules/mob/living/carbon/human/species/grey.dm @@ -42,6 +42,8 @@ /datum/species/grey/after_equip_job(datum/job/J, mob/living/carbon/human/H) var/translator_pref = H.client.prefs.speciesprefs if(translator_pref || ((ismindshielded(H) || J.is_command) && (WINGDINGS in H.mutations))) + if(J.title == "Mime") + return if(J.title == "Clown") var/obj/item/organ/internal/cyberimp/brain/speech_translator/clown/implant = new implant.insert(H)