From 0552c1fcfb3ce0a991acd4c7555f564ddd23fbe4 Mon Sep 17 00:00:00 2001 From: Zuhayr Date: Wed, 7 Aug 2013 01:47:28 -0700 Subject: [PATCH] Fix for ghosts being unable to understand alien languages. --- 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 28d49b39043..cb34e9d25ce 100644 --- a/code/modules/mob/living/say.dm +++ b/code/modules/mob/living/say.dm @@ -367,7 +367,7 @@ var/list/department_radio_keys = list( for (var/M in listening) if(hascall(M,"say_understands")) - if (M:say_understands(src) && !speaking) + if ((M:say_understands(src) && !speaking) || M.universal_speak) //world << "[M] understood [src] (0)." heard_a += M else if(ismob(M))