From 797227e3abd3b2bcf8f7c7fe11ff7feb8e50a893 Mon Sep 17 00:00:00 2001 From: caelaislinn Date: Fri, 22 Jun 2012 07:03:55 +1000 Subject: [PATCH] cleaned up some cameras Signed-off-by: caelaislinn --- code/game/machinery/bots/medbot.dm | 2 +- code/game/machinery/computer/camera_monitor.dm | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/code/game/machinery/bots/medbot.dm b/code/game/machinery/bots/medbot.dm index cc149ad015b..5048e4dfb99 100644 --- a/code/game/machinery/bots/medbot.dm +++ b/code/game/machinery/bots/medbot.dm @@ -80,7 +80,7 @@ src.botcard.access = src.botcard_access src.cam = new /obj/machinery/camera(src) src.cam.c_tag = src.name - src.cam.network = "SS13" + src.cam.network = "Medbay" /obj/machinery/bot/medbot/turn_on() . = ..() diff --git a/code/game/machinery/computer/camera_monitor.dm b/code/game/machinery/computer/camera_monitor.dm index e800f332726..e8c4675dcf2 100644 --- a/code/game/machinery/computer/camera_monitor.dm +++ b/code/game/machinery/computer/camera_monitor.dm @@ -6,9 +6,9 @@ else switch(department) if("Security") - networks = list("Arrivals","SS13","Engineering","Research","Medbay","Tcomsat","Mess Hall","Security","Atmospherics","Cargo","Command","Solars") + networks = list("Arrivals","SS13","Engineering","Research","Medbay","Tcomsat","Mess Hall","Security","Atmospherics","Cargo","Command","Solars","Robotics","Chapel","Hydroponics", "Dormitory") if("Engineering") - networks = list("Engineering","Tcomsat","Singularity","Atmospherics","Solars") + networks = list("Engineering","Tcomsat","Singularity","Atmospherics","Solars","Robotics") if("Research") networks = list("Research","Bomb Testing") if("Medbay")