THIS FIXES IT (well it should :) )

This commit is contained in:
Letter N
2021-02-22 21:05:07 +08:00
parent 7c0a63f729
commit 2be4c76add
9 changed files with 29 additions and 16 deletions

View File

@@ -13,7 +13,7 @@
var/volume = 10000 //in liters
/// The typepath of the gas this tank should be filled with.
var/gas_type = null
var/gas_type = 0
/obj/machinery/atmospherics/components/unary/tank/New()
..()

View File

@@ -319,7 +319,7 @@
if(timing && valve_timer < world.time)
valve_open = !valve_open
timing = FALSE
if(!valve_open)
if(valve_open)
var/turf/T = get_turf(src)
var/datum/gas_mixture/target_air = holding ? holding.air_contents : T.return_air()