[s] Cameranet fixes (#35733)

This commit is contained in:
ShizCalev
2018-02-21 07:31:27 -06:00
committed by CitadelStationBot
parent 1724781d73
commit d2ba2bf0c1
23 changed files with 848 additions and 1183 deletions
+8 -2
View File
@@ -5,12 +5,18 @@
icon_keyboard = "security_key"
circuit = /obj/item/circuitboard/computer/security
var/last_pic = 1
var/list/network = list("SS13")
var/list/network = list("ss13")
var/mapping = 0//For the overview file, interesting bit of code.
var/list/watchers = list() //who's using the console, associated with the camera they're on.
light_color = LIGHT_COLOR_RED
/obj/machinery/computer/security/Initialize()
. = ..()
for(var/i in network)
network -= i
network += lowertext(i)
/obj/machinery/computer/security/check_eye(mob/user)
if( (stat & (NOPOWER|BROKEN)) || user.incapacitated() || user.eye_blind )
user.unset_machine()
@@ -185,5 +191,5 @@
desc = "Used to access the various cameras on the outpost."
icon_screen = "mining"
icon_keyboard = "mining_key"
network = list("MINE")
network = list("mine")
circuit = /obj/item/circuitboard/computer/mining