Maybe fix welderfuel again

This commit is contained in:
Rob Nelson
2015-11-03 23:52:04 -08:00
parent 83de6f58ce
commit 44e3e5e30e

View File

@@ -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