From 44e3e5e30e2c323e69ee8c5c93a2ddd37ab5968c Mon Sep 17 00:00:00 2001 From: Rob Nelson Date: Tue, 3 Nov 2015 23:52:04 -0800 Subject: [PATCH] Maybe fix welderfuel again --- code/ZAS/Fire.dm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/code/ZAS/Fire.dm b/code/ZAS/Fire.dm index beed0f83620..d4de14897c6 100644 --- a/code/ZAS/Fire.dm +++ b/code/ZAS/Fire.dm @@ -347,8 +347,8 @@ datum/gas_mixture/proc/zburn(var/turf/T, force_burn) //this is a copy proc to continue a fire after its been started. var/datum/gas/volatile_fuel/fuel = locate() in trace_gases - if(toxins < (MOLES_PLASMA_VISIBLE-0.1) && !fuel) // God damnit pomf - return 0 + //if(toxins < (MOLES_PLASMA_VISIBLE-0.1) && !fuel) // God damnit pomf + // return 0 if(oxygen && (toxins || fuel)) if(QUANTIZE(toxins * zas_settings.Get(/datum/ZAS_Setting/fire_consumption_rate)) >= BASE_ZAS_FUEL_REQ) @@ -393,8 +393,8 @@ datum/gas_mixture/proc/check_combustability(var/turf/T, var/objects) */ var/datum/gas/volatile_fuel/fuel = locate() in trace_gases - if(toxins < (MOLES_PLASMA_VISIBLE-0.1) && !fuel) // God damnit pomf - return 0 + //if(toxins < (MOLES_PLASMA_VISIBLE-0.1) && !fuel) // God damnit pomf + // return 0 if(oxygen && (toxins || fuel)) if(QUANTIZE(toxins * zas_settings.Get(/datum/ZAS_Setting/fire_consumption_rate)) >= BASE_ZAS_FUEL_REQ) return 1