More computer overlay changes.

Fixes #10764 and a couple other computers.
This commit is contained in:
PsiOmegaDelta
2015-08-20 08:38:43 +02:00
parent 11eefbc4c9
commit 1b64487f8d
8 changed files with 16 additions and 8 deletions

View File

@@ -1,8 +1,11 @@
//This file was auto-corrected by findeclaration.exe on 25.5.2012 20:42:31
/obj/machinery/computer/telecomms
icon_keyboard = "tech_key"
/obj/machinery/computer/telecomms/server
name = "Telecommunications Server Monitor"
icon_state = "comm_logs"
icon_screen = "comm_logs"
var/screen = 0 // the screen number:
var/list/servers = list() // the servers located by the computer

View File

@@ -9,7 +9,7 @@
/obj/machinery/computer/telecomms/monitor
name = "Telecommunications Monitor"
icon_state = "comm_monitor"
icon_screen = "comm_monitor"
var/screen = 0 // the screen number:
var/list/machinelist = list() // the machines located by the computer

View File

@@ -6,7 +6,7 @@
/obj/machinery/computer/telecomms/traffic
name = "Telecommunications Traffic Control"
icon_state = "computer_generic"
icon_screen = "generic"
var/screen = 0 // the screen number:
var/list/servers = list() // the servers located by the computer

View File

@@ -1,6 +1,7 @@
/obj/machinery/computer/forensic_scanning
name = "high-res forensic scanning computer"
icon_state = "forensic"
icon_keyboard = "security_key"
icon_screen = "forensic"
var/screen = "database"
var/authenticated = 0

View File

@@ -2,7 +2,8 @@
/obj/machinery/computer/engines
name = "engine control console"
icon_state = "id"
icon_keyboard = "tech_key"
icon_screen = "id"
var/state = "status"
var/list/engines = list()
var/obj/effect/map/ship/linked

View File

@@ -1,6 +1,7 @@
/obj/machinery/computer/helm
name = "helm control console"
icon_state = "id"
icon_keyboard = "med_key"
icon_screen = "id"
var/state = "status"
var/obj/effect/map/ship/linked //connected overmap object
var/autopilot = 0

View File

@@ -29,7 +29,8 @@
name = "Gas turbine control computer"
desc = "A computer to remotely control a gas turbine"
icon = 'icons/obj/computer.dmi'
icon_state = "turbinecomp"
icon_keyboard = "tech_key"
icon_screen = "turbinecomp"
circuit = /obj/item/weapon/circuitboard/turbine_control
anchored = 1
density = 1

View File

@@ -1,7 +1,8 @@
/obj/machinery/computer/curer
name = "cure research machine"
icon = 'icons/obj/computer.dmi'
icon_state = "dna"
icon_keyboard = "med_key"
icon_screen = "dna"
circuit = /obj/item/weapon/circuitboard/curefab
var/curing
var/virusing