diff --git a/code/game/machinery/doors/airlock.dm b/code/game/machinery/doors/airlock.dm index 2e1cd75c9a4..a697f181eb9 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)