Merge pull request #14817 from duncathan/lastmos

Adds mapping freedom to the TEG
This commit is contained in:
tkdrg
2016-01-24 15:15:48 -03:00
5 changed files with 48 additions and 59 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_LEFT
var/status = 0
var/last_pressure_delta = 0
@@ -15,6 +15,9 @@
anchored = 1
density = 1
var/global/const/CIRC_LEFT = 1
var/global/const/CIRC_RIGHT = 2
/obj/machinery/atmospherics/components/binary/circulator/proc/return_transfer_air()