30 might be too much

This commit is contained in:
Fermi
2019-08-12 01:36:46 +01:00
parent 10ca106f06
commit 75440a48c5
@@ -137,7 +137,7 @@
/datum/chemical_reaction/fermi/SDGF/FermiExplode(datum/reagents, var/atom/my_atom, volume, temp, pH)//Spawns an angery teratoma!
var/turf/T = get_turf(my_atom)
var/amount_to_spawn = round((volume/30), 1)
var/amount_to_spawn = round((volume/50), 1)
for(var/i in 1 to amount_to_spawn)
var/mob/living/simple_animal/slime/S = new(T,"green")
S.damage_coeff = list(BRUTE = 0.9 , BURN = 2, TOX = 1, CLONE = 1, STAMINA = 0, OXY = 1)
@@ -355,7 +355,7 @@
PurityMin = 0.5
/datum/chemical_reaction/fermi/hatmium/FermiExplode(src, var/atom/my_atom, volume, temp, pH)
var/amount_to_spawn = round((volume/30), 1)
var/amount_to_spawn = round((volume/50), 1)
for(var/i in 1 to amount_to_spawn)
var/obj/item/clothing/head/hattip/hat = new /obj/item/clothing/head/hattip(get_turf(my_atom))
hat.animate_atom_living()