Skip to content

Commit 86a639f

Browse files
Revert "now with more customisation"
This reverts commit cceb842.
1 parent 171c633 commit 86a639f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

code/game/machinery/holosign.dm

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ var/list/obj/machinery/holosign/holosigns = list()
3636

3737
/obj/machinery/holosign/update_icon()
3838
overlays.len = 0
39-
if(lit < 0 || (stat & (NOPOWER|BROKEN|FORCEDISABLE)))
39+
if(!lit || (stat & (NOPOWER|BROKEN|FORCEDISABLE)))
4040
set_light(0)
4141
return
4242
if(!overlay)
@@ -67,7 +67,7 @@ var/list/obj/machinery/holosign/holosigns = list()
6767
var/area/optable_area = get_area(OT)
6868
if(optable_area != this_area)
6969
continue
70-
if(OT.victim && !lit)
70+
if(OT.victim)
7171
toggle(TRUE)
7272
should_update = FALSE
7373
return PROCESS_KILL
@@ -151,7 +151,7 @@ var/list/obj/machinery/holosign/holosigns = list()
151151

152152
for(var/obj/machinery/holosign/M in holosigns)
153153
if (M.id_tag == src.id_tag)
154-
M.toggle(active ? 1 : -1)
154+
M.toggle(active*2)
155155

156156
/obj/machinery/holosign_switch/attack_ghost(var/mob/dead/observer/ghost)
157157
if(!can_spook())

0 commit comments

Comments
 (0)