From b5890f60a707c3fe8ef8b6eaca5d5e2a5cb86af1 Mon Sep 17 00:00:00 2001 From: Putnam3145 Date: Fri, 17 Sep 2021 15:50:20 -0700 Subject: [PATCH] Massively reduced oxygen req for bonfire --- code/modules/hydroponics/grown/towercap.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/hydroponics/grown/towercap.dm b/code/modules/hydroponics/grown/towercap.dm index 9c82cf34d3..38e4fcc6ff 100644 --- a/code/modules/hydroponics/grown/towercap.dm +++ b/code/modules/hydroponics/grown/towercap.dm @@ -226,7 +226,7 @@ var/turf/open/O = loc if(O.air) var/datum/gas_mixture/loc_air = O.air - if(loc_air.get_moles(GAS_O2) > 13) + if(loc_air.get_moles(GAS_O2) > 3) return TRUE return FALSE