From c13cda614147535c5a403eff583358c3dbfdeac3 Mon Sep 17 00:00:00 2001 From: ZomgPonies Date: Thu, 2 Jan 2014 01:48:16 -0500 Subject: [PATCH] Allow borers to understand humans --- code/modules/mob/say.dm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/code/modules/mob/say.dm b/code/modules/mob/say.dm index 0a923e0008c..5617e15511f 100644 --- a/code/modules/mob/say.dm +++ b/code/modules/mob/say.dm @@ -94,6 +94,8 @@ return 1 else if (istype(other, /mob/living/simple_animal) && istype(src, /mob/living/simple_animal)) return 1 + else if (istype(other, /mob/living/carbon/human) && istype(src, /mob/living/simple_animal/borer)) + return 1 return 0 /mob/proc/say_quote(var/text,var/datum/language/speaking)