Made computers slightly backlit.

This commit is contained in:
ZomgPonies
2013-11-23 21:39:06 -05:00
parent bd25d73f00
commit 256d0ae5b6
2 changed files with 4 additions and 0 deletions
+3
View File
@@ -8,6 +8,7 @@
active_power_usage = 300
var/obj/item/weapon/circuitboard/circuit = null //if circuit==null, computer can't disassembly
var/processing = 0
luminosity = 2
/obj/machinery/computer/New()
..()
@@ -20,7 +21,9 @@
/obj/machinery/computer/process()
if(stat & (NOPOWER|BROKEN))
luminosity = 0
return 0
luminosity = 2
return 1
/obj/machinery/computer/meteorhit(var/obj/O as obj)
+1
View File
@@ -10,6 +10,7 @@
use_power = 2
idle_power_usage = 20
active_power_usage = 80
luminosity = 2
//fix for issue 521, by QualityVan.
//someone should really look into why circuits have a powernet var, it's several kinds of retarded.