File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ var/list/obj/machinery/holosign/holosigns = list()
36
36
37
37
/ obj / machinery/ holosign/ update_icon()
38
38
overlays. len = 0
39
- if (lit < 0 || (stat & (NOPOWER | BROKEN | FORCEDISABLE )))
39
+ if (! lit || (stat & (NOPOWER | BROKEN | FORCEDISABLE )))
40
40
set_light (0 )
41
41
return
42
42
if (! overlay)
@@ -67,7 +67,7 @@ var/list/obj/machinery/holosign/holosigns = list()
67
67
var /area /optable_area = get_area(OT )
68
68
if (optable_area != this_area)
69
69
continue
70
- if (OT . victim && ! lit )
70
+ if (OT . victim)
71
71
toggle (TRUE )
72
72
should_update = FALSE
73
73
return PROCESS_KILL
@@ -151,7 +151,7 @@ var/list/obj/machinery/holosign/holosigns = list()
151
151
152
152
for (var /obj /machinery/holosign/M in holosigns)
153
153
if (M. id_tag == src . id_tag)
154
- M. toggle(active ? 1 : - 1 )
154
+ M. toggle(active* 2 )
155
155
156
156
/ obj / machinery/ holosign_switch/ attack_ghost(var /mob /dead/observer/ghost )
157
157
if (! can_spook())
You can’t perform that action at this time.
0 commit comments