From b446ccb2ab359f02e7e83e45455580559151889e Mon Sep 17 00:00:00 2001 From: ccomp5950 Date: Mon, 22 Dec 2014 19:35:18 -0500 Subject: [PATCH] Remove Borg nightvision when special views aren't selected. Resolves #7452 --- code/modules/mob/living/silicon/robot/life.dm | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/code/modules/mob/living/silicon/robot/life.dm b/code/modules/mob/living/silicon/robot/life.dm index 0eedb1d9b47..8295687de9c 100644 --- a/code/modules/mob/living/silicon/robot/life.dm +++ b/code/modules/mob/living/silicon/robot/life.dm @@ -166,8 +166,9 @@ src.sight &= ~SEE_MOBS src.sight &= ~SEE_TURFS src.sight &= ~SEE_OBJS - src.see_in_dark = 8 - src.see_invisible = SEE_INVISIBLE_MINIMUM + src.see_in_dark = 8 // see_in_dark means you can FAINTLY see in the dark, humans have a range of 3 or so, tajaran have it at 8 + src.see_invisible = SEE_INVISIBLE_LIVING // This is normal vision (25), setting it lower for normal vision means you don't "see" things like darkness since darkness + // has a "invisible" value of 15 regular_hud_updates()