From c2d5507f21c9ed3a1143b78bc8fbdffc3b938665 Mon Sep 17 00:00:00 2001 From: Arokha Sieyes Date: Sat, 3 Feb 2018 19:34:45 -0500 Subject: [PATCH] Bad dog down boy Removes ability of the AI to see borg cameras when they are away from the station (no UFO spying) Also removes borg ability to mess with doors on UFO (aliennn technologyyy) --- code/game/machinery/doors/airlock.dm | 1 + code/modules/mob/freelook/ai/chunk.dm | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/code/game/machinery/doors/airlock.dm b/code/game/machinery/doors/airlock.dm index 285bab46fef..607db63aeb6 100644 --- a/code/game/machinery/doors/airlock.dm +++ b/code/game/machinery/doors/airlock.dm @@ -470,6 +470,7 @@ /obj/machinery/door/airlock/alien/public // Entry to UFO. req_one_access = list() normalspeed = FALSE // So it closes faster and hopefully keeps the warm air inside. + hackProof = TRUE //VOREStation Edit - No borgos /* About the new airlock wires panel: diff --git a/code/modules/mob/freelook/ai/chunk.dm b/code/modules/mob/freelook/ai/chunk.dm index 5d82f66d662..2a689c1473b 100644 --- a/code/modules/mob/freelook/ai/chunk.dm +++ b/code/modules/mob/freelook/ai/chunk.dm @@ -43,7 +43,7 @@ return stat != DEAD /mob/living/silicon/robot/provides_camera_vision() - return src.camera && src.camera.network.len + return src.camera && src.camera.network.len && (z in using_map.contact_levels) //VOREStation Edit /mob/living/silicon/ai/proc/seen_camera_turfs() return seen_turfs_in_range(src, world.view)