Transit tube pods no longer constantly suck in air (#30116)

* gas_mixture.share() archives the gas_mixtures

* Transit tubes start with standard o2 levels and share gas faster

* restore share() performance
This commit is contained in:
YPOQ
2017-08-24 13:54:37 -06:00
committed by AnturK
parent f5f4f42630
commit 01a6ac937c
2 changed files with 3 additions and 2 deletions
@@ -147,7 +147,8 @@
sleep(OPEN_DURATION + 2)
pod_moving = 0
if(!QDELETED(pod))
pod.air_contents.share(loc.return_air()) //mix the pod's gas mixture with the tile it's on
pod.air_contents.archive()
pod.air_contents.share(loc.return_air(), 1) //mix the pod's gas mixture with the tile it's on
/obj/structure/transit_tube/station/init_tube_dirs()
switch(dir)
@@ -12,7 +12,7 @@
/obj/structure/transit_tube_pod/New(loc)
..()
air_contents.assert_gases("o2", "n2")
air_contents.gases["o2"][MOLES] = MOLES_O2STANDARD * 2
air_contents.gases["o2"][MOLES] = MOLES_O2STANDARD
air_contents.gases["n2"][MOLES] = MOLES_N2STANDARD
air_contents.temperature = T20C