From ecce26f07b77fe7293afda476cff837d016f48e3 Mon Sep 17 00:00:00 2001 From: Zuhayr Date: Sat, 17 Aug 2013 19:59:52 -0700 Subject: [PATCH] Allowed monkeys to use radios. --- code/modules/mob/living/say.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/say.dm b/code/modules/mob/living/say.dm index 80e86f2ef5..3c13b8befd 100644 --- a/code/modules/mob/living/say.dm +++ b/code/modules/mob/living/say.dm @@ -162,7 +162,7 @@ var/list/department_radio_keys = list( if (message_mode || speaking) message = trim(copytext(message, 3)) - if (!(ishuman(src) || istype(src, /mob/living/simple_animal/parrot) || isrobot(src) && (message_mode=="department" || (message_mode in radiochannels)))) + if (!(istype(src,/mob/living/carbon/human) || istype(src,/mob/living/carbon/monkey) || istype(src, /mob/living/simple_animal/parrot) || isrobot(src) && (message_mode=="department" || (message_mode in radiochannels)))) message_mode = null //only humans can use headsets if(src.stunned > 2 || (traumatic_shock > 61 && prob(50)))