From 0e310200fc37a3395ed3363f7780c57f35df7131 Mon Sep 17 00:00:00 2001 From: "VivianFoxfoot@gmail.com" Date: Fri, 23 Dec 2011 08:31:17 +0000 Subject: [PATCH] Cyborgs now get a message that their parent AI has had their laws modified. (For Kor) git-svn-id: http://tgstation13.googlecode.com/svn/trunk@2778 316c924e-a436-60f5-8080-3fe189b3f50e --- code/game/objects/items/weapons/AI_modules.dm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/code/game/objects/items/weapons/AI_modules.dm b/code/game/objects/items/weapons/AI_modules.dm index 85498d769a7..b69fe67c6c0 100644 --- a/code/game/objects/items/weapons/AI_modules.dm +++ b/code/game/objects/items/weapons/AI_modules.dm @@ -79,6 +79,9 @@ AI MODULES src.transmitInstructions(comp.current, usr) comp.current << "These are your laws now:" comp.current.show_laws() + for(var/mob/living/silicon/robot/R in world) + if(R.lawupdate && (R.connected_ai == comp.current)) + R << "Your AI has set your 'laws waiting' flag." usr << "Upload complete. The AI's laws have been modified."