Added "Open" sign outside bar

So you can tell if the bar is manned without walking in and out.
This commit is contained in:
Cerebulon
2018-01-29 08:29:17 +00:00
parent 2a0f94f77d
commit b207364d51
4 changed files with 11004 additions and 10986 deletions

View File

@@ -12,6 +12,7 @@
var/lit = 0
var/id = null
var/on_icon = "sign_on"
var/off_icon = "sign_off"
/obj/machinery/holosign/proc/toggle()
if(stat & (BROKEN|NOPOWER))
@@ -22,7 +23,7 @@
/obj/machinery/holosign/update_icon()
if(!lit)
icon_state = "sign_off"
icon_state = off_icon
else
icon_state = on_icon
@@ -40,7 +41,16 @@
/obj/machinery/holosign/exit
name = "exit holosign"
desc = "Small wall-mounted holographic projector. This one reads EXIT."
on_icon = "exit"
on_icon = "emergencyexit"
/obj/machinery/holosign/bar
name = "bar holosign"
desc = "Small wall-mounted holographic projector. This one reads OPEN."
icon_state = "barclosed"
on_icon = "baropen"
off_icon = "barclosed"
////////////////////SWITCH///////////////////////////////////////
/obj/machinery/button/holosign

View File

@@ -0,0 +1,7 @@
author: Cerebulon
delete-after: True
changes:
- rscadd: "Added toggleable 'Open' sign to bar hallway so you can tell if it's open without walking inside."

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.1 KiB

After

Width:  |  Height:  |  Size: 5.0 KiB

File diff suppressed because it is too large Load Diff