From 250f6e5115572bd0f1d94e3c86ff65076504a509 Mon Sep 17 00:00:00 2001 From: Leland Kemble <70413276+lelandkemble@users.noreply.github.com> Date: Fri, 8 May 2026 21:59:04 -0400 Subject: [PATCH] SyndEye PDA app tracking successfully tracks (#96007) ## About The Pull Request Inversion on early return, tracks only if the target isn't on cams. ## Why It's Good For The Game fixes #95935 ## Changelog :cl: fix: SyndEye PDA app tracking tracks successfully /:cl: --- code/modules/modular_computers/file_system/programs/secureye.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/modular_computers/file_system/programs/secureye.dm b/code/modules/modular_computers/file_system/programs/secureye.dm index c488e1d0ec6..640de44979c 100644 --- a/code/modules/modular_computers/file_system/programs/secureye.dm +++ b/code/modules/modular_computers/file_system/programs/secureye.dm @@ -174,7 +174,7 @@ CRASH("[src] was able to track [target] through /datum/trackable, but was not on a visible turf to cameras.") for(var/obj/machinery/camera/cameras as anything in target_camerachunk.cameras["[target.z]"]) // We need to find a particular camera that can see this turf - if(length(cameras.can_see() & list(target_turf))) + if(!(length(cameras.can_see() & list(target_turf)))) continue var/new_camera = WEAKREF(cameras) if(camera_ref == new_camera)