Removes unneccessary comments and unrelated tweaks.

This commit is contained in:
nullbear
2016-08-28 16:09:27 -07:00
parent e1e5501950
commit 46c8e9848a
2 changed files with 5 additions and 5 deletions
@@ -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"
@@ -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
..()