From abdf2363f8dce38a8e6f01bc5eea50fcf9633fca Mon Sep 17 00:00:00 2001 From: "n3ophyt3@gmail.com" Date: Sun, 12 Dec 2010 08:07:03 +0000 Subject: [PATCH] Fixed cyborgs not properly losing law 0 when their AI loses it. git-svn-id: http://tgstation13.googlecode.com/svn/trunk@594 316c924e-a436-60f5-8080-3fe189b3f50e --- code/modules/mob/living/silicon/robot/laws.dm | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/code/modules/mob/living/silicon/robot/laws.dm b/code/modules/mob/living/silicon/robot/laws.dm index b9d4437860..3b90fdf9cb 100644 --- a/code/modules/mob/living/silicon/robot/laws.dm +++ b/code/modules/mob/living/silicon/robot/laws.dm @@ -59,9 +59,8 @@ var/temp if (master) - if (master.zeroth) - temp = master.zeroth - src.laws.zeroth = temp + temp = master.zeroth + src.laws.zeroth = temp src.laws.inherent.len = master.inherent.len for (var/index = 1, index <= master.inherent.len, index++)