From a6167c56eb5bf9e73f44888b8afa7ad6ecb16e9a Mon Sep 17 00:00:00 2001 From: ZomgPonies Date: Sun, 22 Jun 2014 06:49:26 -0400 Subject: [PATCH] Temporary exploit fix pending permanant solution from upstream. Thanks for the find! --- code/modules/reagents/Chemistry-Reagents.dm | 22 ++++++++++----------- code/modules/reagents/Chemistry-Recipes.dm | 14 ++++++------- 2 files changed, 18 insertions(+), 18 deletions(-) diff --git a/code/modules/reagents/Chemistry-Reagents.dm b/code/modules/reagents/Chemistry-Reagents.dm index 2253216aac9..057f6c43086 100644 --- a/code/modules/reagents/Chemistry-Reagents.dm +++ b/code/modules/reagents/Chemistry-Reagents.dm @@ -1473,19 +1473,19 @@ datum if (egg.grown) egg.Hatch()*/ if((!O) || (!volume)) return 0 - var/turf/the_turf = get_turf(O) - var/datum/gas_mixture/napalm = new - var/datum/gas/volatile_fuel/fuel = new - fuel.moles = 5 - napalm.trace_gases += fuel - the_turf.assume_air(napalm) +// var/turf/the_turf = get_turf(O) +// var/datum/gas_mixture/napalm = new +// var/datum/gas/volatile_fuel/fuel = new +// fuel.moles = 5 +// napalm.trace_gases += fuel +// the_turf.assume_air(napalm) reaction_turf(var/turf/T, var/volume) src = null - var/datum/gas_mixture/napalm = new - var/datum/gas/volatile_fuel/fuel = new - fuel.moles = 5 - napalm.trace_gases += fuel - T.assume_air(napalm) +// var/datum/gas_mixture/napalm = new +// var/datum/gas/volatile_fuel/fuel = new +// fuel.moles = 5 +// napalm.trace_gases += fuel +// T.assume_air(napalm) return reaction_mob(var/mob/living/M, var/method=TOUCH, var/volume)//Splashing people with plasma is stronger than fuel! if(!istype(M, /mob/living)) diff --git a/code/modules/reagents/Chemistry-Recipes.dm b/code/modules/reagents/Chemistry-Recipes.dm index d14d3586338..8d0fe07bf60 100644 --- a/code/modules/reagents/Chemistry-Recipes.dm +++ b/code/modules/reagents/Chemistry-Recipes.dm @@ -421,15 +421,15 @@ datum var/turf/location = get_turf(holder.my_atom.loc) 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 +// var/datum/gas_mixture/napalm = new +// var/datum/gas/volatile_fuel/fuel = new +// fuel.moles = created_volume +// napalm.trace_gases += fuel - napalm.temperature = 400+T0C - napalm.update_values() +// napalm.temperature = 400+T0C +// napalm.update_values() - target_tile.assume_air(napalm) +// target_tile.assume_air(napalm) spawn (0) target_tile.hotspot_expose(700, 400) holder.del_reagent("napalm") return