From 46c8e9848a309adfed12e53ffe02652d2fa21918 Mon Sep 17 00:00:00 2001 From: nullbear Date: Sun, 28 Aug 2016 16:09:27 -0700 Subject: [PATCH] Removes unneccessary comments and unrelated tweaks. --- code/modules/reagents/chemistry/recipes/others.dm | 6 +++--- code/modules/reagents/chemistry/recipes/pyrotechnics.dm | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/code/modules/reagents/chemistry/recipes/others.dm b/code/modules/reagents/chemistry/recipes/others.dm index 1c35a1fec1d..ee027a5d23b 100644 --- a/code/modules/reagents/chemistry/recipes/others.dm +++ b/code/modules/reagents/chemistry/recipes/others.dm @@ -8,7 +8,7 @@ /datum/chemical_reaction/lube name = "Space Lube" id = "lube" - results = list("lube" = 3) // fuck this spillover into nullspace. + results = list("lube" = 4) required_reagents = list("water" = 1, "silicon" = 1, "oxygen" = 1) /datum/chemical_reaction/spraytan @@ -112,8 +112,8 @@ /datum/chemical_reaction/virus_food name = "Virus Food" id = "virusfood" - results = list("virusfood" = 15) // Again, fuck the spillover into nullspace. - required_reagents = list("water" = 10, "milk" = 5) + results = list("virusfood" = 15) + required_reagents = list("water" = 5, "milk" = 5) /datum/chemical_reaction/virus_food_mutagen name = "mutagenic agar" diff --git a/code/modules/reagents/chemistry/recipes/pyrotechnics.dm b/code/modules/reagents/chemistry/recipes/pyrotechnics.dm index ea226586fb5..38e316be26b 100644 --- a/code/modules/reagents/chemistry/recipes/pyrotechnics.dm +++ b/code/modules/reagents/chemistry/recipes/pyrotechnics.dm @@ -129,7 +129,7 @@ /datum/chemical_reaction/clf3/on_reaction(datum/reagents/holder, created_volume) var/turf/T = get_turf(holder.my_atom) - for(var/turf/turf in range(1+round((created_volume-1)/25),T)) // More lulz. (The range of the fireball increases by 1 for every 100 units in the mixture.) + for(var/turf/turf in range(1,T)) PoolOrNew(/obj/effect/hotspot, turf) holder.chem_temp = 1000 // hot as shit @@ -144,7 +144,7 @@ /datum/chemical_reaction/reagent_explosion/methsplosion/on_reaction(datum/reagents/holder, created_volume) var/turf/T = get_turf(holder.my_atom) - for(var/turf/turf in range(1+round(created_volume/50,T))) // Scales at 200u + for(var/turf/turf in range(1,T)) PoolOrNew(/obj/effect/hotspot, turf) holder.chem_temp = 1000 // hot as shit ..()