Added a program to view labor camp cams (#12791)

Added a program that is a subtype of secureye that can view labor camp cams called OverSeer. Also gives a new icon for overwatch to make it different from secureye.
This commit is contained in:
nmajask
2021-12-11 11:13:20 -05:00
committed by GitHub
parent a42a9e437b
commit cabf6cbcf4

View File

@@ -184,11 +184,32 @@
camlist["[cam.c_tag]"] = cam
return camlist
//////////////////
//Mining Cameras//
//////////////////
///A program that allows you to view the cameras on the Mining Base
/datum/computer_file/program/secureye/mining
filename = "overwatch"
filedesc = "OverWatch"
extended_desc = "This program allows access to the mining base camera network."
transfer_access = ACCESS_MINING
size = 5
program_icon = "globe"
network = list("mine", "auxbase")
//////////////////////
//Labor Camp Cameras//
//////////////////////
///A program that allows you to view the cameras on the Labor Camp
/datum/computer_file/program/secureye/laborcamp
filename = "overseer"
filedesc = "OverSeer"
extended_desc = "This program allows access to the labor camp camera network."
transfer_access = ACCESS_ARMORY
size = 5
program_icon = "dungeon"
network = list("labor")