Edits erroneous arg removal.

This commit is contained in:
ComicIronic
2015-05-09 18:32:26 +01:00
parent 1d0c272f4a
commit e228853ea1
2 changed files with 2 additions and 2 deletions

View File

@@ -315,7 +315,7 @@ datum/gas_mixture/proc/zburn(var/turf/T, force_burn)
if(current_gas.isFuel())
adjust_gas(current_gas.gas_id, -gases[gasid] * used_fuel_ratio * used_reactants_ratio * current_gas.fuel_multiplier, 0) //take the cost of fuel
adjust_gas(CARBON_DIOXIDE, max(2 * total_fuel, 0))
adjust_gas(CARBON_DIOXIDE, max(2 * total_fuel, 0), 0)
if(can_use_turf)
if(T.getFireFuel()>0)

View File

@@ -92,7 +92,7 @@ What are the archived variables for?
//Outputs: null
for(var/a_gas in adjusts)
adjust_gas(a_gas, adjusts[a_gas])
adjust_gas(a_gas, adjusts[a_gas], 0)
return
//Takes a gas string, and the amount of moles to adjust by.