From bcac51f41f34b1d9d658fb35cff3a46228031479 Mon Sep 17 00:00:00 2001 From: Duck- Date: Mon, 17 Mar 2014 22:59:29 -0400 Subject: [PATCH] Fixing borg nightvision They have it set to 8 but can't see a thing in the dark. Not working as intended. --- code/modules/mob/living/silicon/robot/life.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/mob/living/silicon/robot/life.dm b/code/modules/mob/living/silicon/robot/life.dm index bb7b5d91..40cfc062 100644 --- a/code/modules/mob/living/silicon/robot/life.dm +++ b/code/modules/mob/living/silicon/robot/life.dm @@ -163,7 +163,7 @@ src.sight &= ~SEE_TURFS src.sight &= ~SEE_OBJS src.see_in_dark = 8 - src.see_invisible = SEE_INVISIBLE_LEVEL_TWO + src.see_invisible = SEE_INVISIBLE_MINIMUM for(var/image/hud in client.images) //COPIED FROM the human handle_regular_hud_updates() proc if(copytext(hud.icon_state,1,4) == "hud") //ugly, but icon comparison is worse, I believe @@ -305,4 +305,4 @@ /mob/living/silicon/robot/update_canmove() if(paralysis || stunned || weakened || buckled || lockcharge) canmove = 0 else canmove = 1 - return canmove \ No newline at end of file + return canmove