From 20831936bacae1cb352e1771f5862aceb4eac049 Mon Sep 17 00:00:00 2001 From: Neerti Date: Fri, 15 Sep 2017 23:51:44 -0400 Subject: [PATCH] Corrects Borg Light Intensity Apparently default intensity before the handle_light() change is 1 and not the range repeated, so now it's 1 again. --- code/modules/mob/living/silicon/robot/life.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/silicon/robot/life.dm b/code/modules/mob/living/silicon/robot/life.dm index b6d0f75bfe..c35fb17ece 100644 --- a/code/modules/mob/living/silicon/robot/life.dm +++ b/code/modules/mob/living/silicon/robot/life.dm @@ -354,5 +354,5 @@ . = ..() if(. == FALSE) // If no other light sources are on. if(lights_on) - set_light(integrated_light_power, integrated_light_power, "#FFFFFF") + set_light(integrated_light_power, 1, "#FFFFFF") return TRUE