From 2bc8212d2a1d484154868ee98a0fdef4e4e7f329 Mon Sep 17 00:00:00 2001 From: Zuhayr Date: Fri, 16 Aug 2013 19:00:08 -0700 Subject: [PATCH] Fix for subtypes of X mob not being able to understand each other. --- code/modules/mob/say.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/say.dm b/code/modules/mob/say.dm index c454ce1d13d..567152b9157 100644 --- a/code/modules/mob/say.dm +++ b/code/modules/mob/say.dm @@ -83,7 +83,7 @@ return 1 else if(isAI(src) && ispAI(other)) return 1 - else if (istype(other, src.type)) + else if (istype(other, src.type) || istype(src, other.type)) return 1 return 0