mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-24 20:47:10 +01:00
Fixes monitors having the wrong circuit board when deconstructed (#19307)
* turns engine monitor into a proper item * fixed the other monitors * Update code/game/machinery/computer/camera.dm Co-authored-by: SteelSlayer <42044220+SteelSlayer@users.noreply.github.com> * lowercase names Co-authored-by: SteelSlayer <42044220+SteelSlayer@users.noreply.github.com>
This commit is contained in:
@@ -59,6 +59,42 @@
|
||||
board_name = "Entertainment Monitor"
|
||||
build_path = /obj/machinery/computer/security/telescreen/entertainment
|
||||
|
||||
/obj/item/circuitboard/camera/engine
|
||||
board_name = "Engine Camera Monitor"
|
||||
build_path = /obj/machinery/computer/security/telescreen/engine
|
||||
|
||||
/obj/item/circuitboard/camera/research
|
||||
board_name = "Research Monitor"
|
||||
build_path = /obj/machinery/computer/security/telescreen/research
|
||||
|
||||
/obj/item/circuitboard/camera/rd
|
||||
board_name = "Research Director Monitor"
|
||||
build_path = /obj/machinery/computer/security/telescreen/rd
|
||||
|
||||
/obj/item/circuitboard/camera/prison
|
||||
board_name = "Prison Monitor"
|
||||
build_path = /obj/machinery/computer/security/telescreen/prison
|
||||
|
||||
/obj/item/circuitboard/camera/interrogation
|
||||
board_name = "Interrogation Monitor"
|
||||
build_path = /obj/machinery/computer/security/telescreen/interrogation
|
||||
|
||||
/obj/item/circuitboard/camera/minisat
|
||||
board_name = "MiniSat Monitor"
|
||||
build_path = /obj/machinery/computer/security/telescreen/minisat
|
||||
|
||||
/obj/item/circuitboard/camera/upload
|
||||
board_name = "AI Upload Monitor"
|
||||
build_path = /obj/machinery/computer/security/telescreen/upload
|
||||
|
||||
/obj/item/circuitboard/camera/vault
|
||||
board_name = "Vault Monitor"
|
||||
build_path = /obj/machinery/computer/security/telescreen/vault
|
||||
|
||||
/obj/item/circuitboard/camera/turbine
|
||||
board_name = "Turbine Vent Monitor"
|
||||
build_path = /obj/machinery/computer/security/telescreen/turbine
|
||||
|
||||
/obj/item/circuitboard/camera/wooden_tv
|
||||
board_name = "Wooden TV"
|
||||
build_path = /obj/machinery/computer/security/wooden_tv
|
||||
|
||||
@@ -261,3 +261,57 @@
|
||||
light_color = "#FAC54B"
|
||||
network = list("Power Alarms","Atmosphere Alarms","Fire Alarms")
|
||||
circuit = /obj/item/circuitboard/camera/engineering
|
||||
|
||||
/obj/machinery/computer/security/telescreen/engine
|
||||
name = "engine monitor"
|
||||
desc = "A telescreen that connects to the engine's camera network.";
|
||||
network = list("engine")
|
||||
circuit = /obj/item/circuitboard/camera/engine
|
||||
|
||||
/obj/machinery/computer/security/telescreen/research
|
||||
name = "research monitor"
|
||||
desc = "Used for watching the horrors within the test chamber.";
|
||||
network = list("TestChamber")
|
||||
circuit = /obj/item/circuitboard/camera/research
|
||||
|
||||
/obj/machinery/computer/security/telescreen/rd
|
||||
name = "research director monitor"
|
||||
desc = "Used for watching the RD's goons from the safety of his office.";
|
||||
network = list("Research","Research Outpost","RD","MiniSat")
|
||||
circuit = /obj/item/circuitboard/camera/rd
|
||||
|
||||
/obj/machinery/computer/security/telescreen/prison
|
||||
name = "prison monitor"
|
||||
desc = "Used for watching Prison Wing holding areas.";
|
||||
network = list("Prison")
|
||||
circuit = /obj/item/circuitboard/camera/prison
|
||||
|
||||
/obj/machinery/computer/security/telescreen/interrogation
|
||||
name = "interrogation monitor"
|
||||
desc = "Used for watching interrogations.";
|
||||
network = list("Interrogation")
|
||||
circuit = /obj/item/circuitboard/camera/interrogation
|
||||
|
||||
/obj/machinery/computer/security/telescreen/minisat
|
||||
name = "minisat monitor"
|
||||
desc = "Used for watching areas on the MiniSat.";
|
||||
network = list("MiniSat","tcomm")
|
||||
circuit = /obj/item/circuitboard/camera/minisat
|
||||
|
||||
/obj/machinery/computer/security/telescreen/upload
|
||||
name = "ai upload monitor"
|
||||
desc = "Used for watching the AI Upload.";
|
||||
network = list("AIUpload")
|
||||
circuit = /obj/item/circuitboard/camera/upload
|
||||
|
||||
/obj/machinery/computer/security/telescreen/vault
|
||||
name = "vault monitor"
|
||||
desc = "Used for watching the vault.";
|
||||
network = list("vault")
|
||||
circuit = /obj/item/circuitboard/camera/vault
|
||||
|
||||
/obj/machinery/computer/security/telescreen/turbine
|
||||
name = "turbine vent monitor"
|
||||
desc = "Used for watching the turbine vent.";
|
||||
network = list("Turbine")
|
||||
circuit = /obj/item/circuitboard/camera/turbine
|
||||
|
||||
Reference in New Issue
Block a user