From c63dc0f9628f584c239bfbdd19caf3de692901fd Mon Sep 17 00:00:00 2001 From: SkyMarshal Date: Thu, 11 Apr 2013 12:19:35 -0700 Subject: [PATCH] Compile fix. --- code/modules/reagents/Chemistry-Recipes.dm | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/code/modules/reagents/Chemistry-Recipes.dm b/code/modules/reagents/Chemistry-Recipes.dm index 861529035b8..60835c6ce8d 100644 --- a/code/modules/reagents/Chemistry-Recipes.dm +++ b/code/modules/reagents/Chemistry-Recipes.dm @@ -385,8 +385,10 @@ datum for(var/turf/simulated/floor/target_tile in range(0,location)) var/datum/gas_mixture/napalm = new + var/datum/gas/volatile_fuel/fuel = new + fuel.moles = created_volume + napalm.trace_gases += fuel - napalm.volatile_fuel = created_volume napalm.temperature = 400+T0C napalm.update_values()