mirror of
https://github.com/vgstation-coders/vgstation13.git
synced 2025-12-10 02:16:05 +00:00
Edits erroneous arg removal.
This commit is contained in:
@@ -315,7 +315,7 @@ datum/gas_mixture/proc/zburn(var/turf/T, force_burn)
|
|||||||
if(current_gas.isFuel())
|
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(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(can_use_turf)
|
||||||
if(T.getFireFuel()>0)
|
if(T.getFireFuel()>0)
|
||||||
|
|||||||
@@ -92,7 +92,7 @@ What are the archived variables for?
|
|||||||
//Outputs: null
|
//Outputs: null
|
||||||
|
|
||||||
for(var/a_gas in adjusts)
|
for(var/a_gas in adjusts)
|
||||||
adjust_gas(a_gas, adjusts[a_gas])
|
adjust_gas(a_gas, adjusts[a_gas], 0)
|
||||||
return
|
return
|
||||||
|
|
||||||
//Takes a gas string, and the amount of moles to adjust by.
|
//Takes a gas string, and the amount of moles to adjust by.
|
||||||
|
|||||||
Reference in New Issue
Block a user