From 5895a098feb003628fd8f6988943bc8775282e82 Mon Sep 17 00:00:00 2001 From: Walter0o Date: Fri, 1 Aug 2014 22:34:28 +0200 Subject: [PATCH] fixes alien castes not understanding each other only /mob/living/carbon/alien have this var set, so this will not touch anything else. --- code/modules/mob/say.dm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/code/modules/mob/say.dm b/code/modules/mob/say.dm index 8bb02af6d42..a9648bc95d4 100644 --- a/code/modules/mob/say.dm +++ b/code/modules/mob/say.dm @@ -87,6 +87,8 @@ return 1 if (istype(other, src.type) || istype(src, other.type)) return 1 + if(src.alien_talk_understand && other.alien_talk_understand) + return 1 return 0 //Language check. @@ -159,4 +161,3 @@ return L return null -