From 9dac564412f412a070e8fe80103891893e5927c0 Mon Sep 17 00:00:00 2001 From: Fermi Date: Mon, 18 Feb 2019 22:42:07 +0000 Subject: [PATCH] Quick fix to reduce the amount of FermiPlushies spawned Fun!! --- code/modules/reagents/chemistry/recipes/others.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/reagents/chemistry/recipes/others.dm b/code/modules/reagents/chemistry/recipes/others.dm index a5ae8f9141..fa1a1d2db5 100644 --- a/code/modules/reagents/chemistry/recipes/others.dm +++ b/code/modules/reagents/chemistry/recipes/others.dm @@ -142,7 +142,7 @@ /datum/chemical_reaction/fermis_plush/on_reaction(datum/reagents/holder, created_volume) var/location = get_turf(holder.my_atom) - for(var/i = 1, i <= created_volume, i++) + for(var/i = 1, i <= created_volume, i+=10) new /obj/item/toy/plush/catgirl/fermis(location) ////////////////////////////////// VIROLOGY //////////////////////////////////////////