From cbcf41a6ed7d57b32f9b4fe779708bf830a016f0 Mon Sep 17 00:00:00 2001 From: 81Denton <32391752+81Denton@users.noreply.github.com> Date: Sun, 29 Jul 2018 20:18:59 +0200 Subject: [PATCH] Increases handheld T-ray scanner range (#39427) Right now, handheld T-ray scanners barely see any use since they have the same range as T-ray glasses but still take up a pocket/hand slot. Increasing their scan range will hopefully make them a viable alternative. New T-ray ranges: Engineering scanner glasses: 1 T-ray glasses: 2 T-ray scanners: 3 --- code/game/objects/items/devices/scanners.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/objects/items/devices/scanners.dm b/code/game/objects/items/devices/scanners.dm index 6acff297c98..636119f495c 100644 --- a/code/game/objects/items/devices/scanners.dm +++ b/code/game/objects/items/devices/scanners.dm @@ -42,7 +42,7 @@ SLIME SCANNER /obj/item/t_scanner/proc/scan() t_ray_scan(loc) -/proc/t_ray_scan(mob/viewer, flick_time = 8, distance = 2) +/proc/t_ray_scan(mob/viewer, flick_time = 8, distance = 3) if(!ismob(viewer) || !viewer.client) return var/list/t_ray_images = list()