From a28d67d70efd583e44d7f29cbdc93e46532385fe Mon Sep 17 00:00:00 2001 From: "n3ophyt3@gmail.com" Date: Fri, 17 Dec 2010 18:01:27 +0000 Subject: [PATCH] A borg that has been "emagged" by its AI is no longer told that AIs aren't syndicate agents when looking at its laws. git-svn-id: http://tgstation13.googlecode.com/svn/trunk@649 316c924e-a436-60f5-8080-3fe189b3f50e --- code/modules/mob/living/silicon/robot/laws.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/silicon/robot/laws.dm b/code/modules/mob/living/silicon/robot/laws.dm index 259dcb34303..bd785fb0a07 100644 --- a/code/modules/mob/living/silicon/robot/laws.dm +++ b/code/modules/mob/living/silicon/robot/laws.dm @@ -24,7 +24,7 @@ who << "Obey these laws:" laws.show_laws(who) - if (connected_ai && !emagged) + if (connected_ai) who << "Remember, [connected_ai.name] is your master, other AIs can be ignored." else if (emagged) who << "Remember, AIs are not syndicate operatives, so you are not required to listen to them."