adds mapping freedom to the TEG

This commit is contained in:
duncathan
2016-01-23 12:25:42 -06:00
parent b7bdac19eb
commit 07bb3775e6
2 changed files with 37 additions and 34 deletions
@@ -7,7 +7,7 @@
desc = "A gas circulator pump and heat exchanger."
icon_state = "circ1-off"
var/side = 1 // 1=left 2=right
var/side = CIRC_COLD // 1=left 2=right
var/status = 0
var/last_pressure_delta = 0
@@ -15,6 +15,9 @@
anchored = 1
density = 1
var/global/const/CIRC_COLD = 1
var/global/const/CIRC_HOT = 2
/obj/machinery/atmospherics/components/binary/circulator/proc/return_transfer_air()