From 949ef456c9d2989c564b56528806390fddfc9fa7 Mon Sep 17 00:00:00 2001 From: ZomgPonies Date: Fri, 3 Jan 2014 18:50:27 -0500 Subject: [PATCH] Revert "Revert "Allow borers to understand humans"" This reverts commit 66455daedcd44a528594603a16b55e3c8d0e634b. --- 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)