From cdd581a4d0c39e243af8f5efc4a5ba54e3f651ae Mon Sep 17 00:00:00 2001 From: Crazylemon64 Date: Wed, 21 Dec 2016 18:37:39 -0800 Subject: [PATCH] Adds fox's requested change to the advanced console to avoid a void camera until the first camera jump --- code/game/machinery/computer/camera_advanced.dm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/code/game/machinery/computer/camera_advanced.dm b/code/game/machinery/computer/camera_advanced.dm index 8757d73cebc..3d1df935cf8 100644 --- a/code/game/machinery/computer/camera_advanced.dm +++ b/code/game/machinery/computer/camera_advanced.dm @@ -59,7 +59,10 @@ if(camera_location) eyeobj.initialized = 1 give_eye_control(user) + eyeobj.setLoc(camera_location) else + // An abberant case - silent failure is obnoxious + to_chat(user, "ERROR: No linked and active camera network found.") user.unset_machine() else give_eye_control(user)