From fdab05baefd133a4e505f021e3397ba7bbbc5fef Mon Sep 17 00:00:00 2001 From: Ccomp5950 Date: Sat, 26 Apr 2014 02:29:41 -0500 Subject: [PATCH] ghosts won't see the random names given to announcement AI's --- code/modules/mob/hear_say.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/hear_say.dm b/code/modules/mob/hear_say.dm index c8552530fb..fc1aba3570 100644 --- a/code/modules/mob/hear_say.dm +++ b/code/modules/mob/hear_say.dm @@ -106,7 +106,7 @@ track = "[speaker_name] ([jobname])" if(istype(src, /mob/dead/observer)) - if(speaker_name != speaker.real_name) + if(speaker_name != speaker.real_name && !isAI(speaker)) //Announce computer and various stuff that broadcasts doesn't use it's real name but AI's can't pretend to be other mobs. speaker_name = "[speaker.real_name] ([speaker_name])" track = "[speaker_name] (follow)"