From 484ea6d20f2f8f91b6e8bdf94a2aaef3a9cae5bb Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Thu, 20 Jul 2017 22:25:53 -0500 Subject: [PATCH] Converted borgs will properly show the glowing eye message at distances of 1 --- code/modules/mob/living/silicon/robot/examine.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/silicon/robot/examine.dm b/code/modules/mob/living/silicon/robot/examine.dm index ca276b60bd..7f232e20f4 100644 --- a/code/modules/mob/living/silicon/robot/examine.dm +++ b/code/modules/mob/living/silicon/robot/examine.dm @@ -34,7 +34,7 @@ if(cell && cell.charge <= 0) msg += "Its battery indicator is blinking red!\n" - if(is_servant_of_ratvar(src) && user.Adjacent(src) && !stat) //To counter pseudo-stealth by using headlamps + if(is_servant_of_ratvar(src) && get_dist(user, src) <= 1 && !stat) //To counter pseudo-stealth by using headlamps msg += "Its eyes are glowing a blazing yellow!\n" switch(stat)