POLARIS: Fixes #3237 (VS) - Cryoconsoles are lit even when unpowered

This commit is contained in:
Arokha Sieyes
2018-03-20 15:51:28 -04:00
parent bf0babb9ec
commit caf929d935
2 changed files with 7 additions and 6 deletions

View File

@@ -29,6 +29,13 @@
req_one_access = list(access_heads) //VOREStation Add
/obj/machinery/computer/cryopod/update_icon()
..()
if((stat & NOPOWER) || (stat & BROKEN))
icon_state = "[initial(icon_state)]-p"
else
icon_state = initial(icon_state)
/obj/machinery/computer/cryopod/robot
name = "robotic storage console"
desc = "An interface between crew and the robotic storage systems"
@@ -43,8 +50,6 @@
/obj/machinery/computer/cryopod/dorms
name = "residential oversight console"
desc = "An interface between visitors and the residential oversight systems tasked with keeping track of all visitors in the deeper section of the colony."
icon = 'icons/obj/robot_storage.dmi' //placeholder
icon_state = "console" //placeholder
circuit = "/obj/item/weapon/circuitboard/robotstoragecontrol"
storage_type = "visitors"
@@ -54,8 +59,6 @@
/obj/machinery/computer/cryopod/travel
name = "docking oversight console"
desc = "An interface between visitors and the docking oversight systems tasked with keeping track of all visitors who enter or exit from the docks."
icon = 'icons/obj/robot_storage.dmi' //placeholder
icon_state = "console" //placeholder
circuit = "/obj/item/weapon/circuitboard/robotstoragecontrol"
storage_type = "visitors"
@@ -65,8 +68,6 @@
/obj/machinery/computer/cryopod/gateway
name = "gateway oversight console"
desc = "An interface between visitors and the gateway oversight systems tasked with keeping track of all visitors who enter or exit from the gateway."
icon = 'icons/obj/robot_storage.dmi' //placeholder
icon_state = "console" //placeholder
circuit = "/obj/item/weapon/circuitboard/robotstoragecontrol"
storage_type = "visitors"

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.0 KiB

After

Width:  |  Height:  |  Size: 5.8 KiB