updates vars to use the defines

This commit is contained in:
Purpose
2018-09-16 01:22:57 +01:00
parent 85e35bcba9
commit 037f215d16
105 changed files with 203 additions and 228 deletions

View File

@@ -2,7 +2,7 @@
/obj/machinery/ntnet_relay
name = "NTNet Quantum Relay"
desc = "A very complex router and transmitter capable of connecting electronic devices together. Looks fragile."
use_power = 2
use_power = ACTIVE_POWER_USE
active_power_usage = 10000 //10kW, apropriate for machine that keeps massive cross-Zlevel wireless network operational. Used to be 20 but that actually drained the smes one round
idle_power_usage = 100
icon = 'icons/obj/stationobjs.dmi'
@@ -38,9 +38,9 @@
/obj/machinery/ntnet_relay/process()
if(operable())
use_power = 2
use_power = ACTIVE_POWER_USE
else
use_power = 1
use_power = IDLE_POWER_USE
update_icon()