From 516a2df48e4eb44d8c3a4fc21efa026ed611e5be Mon Sep 17 00:00:00 2001 From: Fermi Date: Mon, 18 Feb 2019 23:06:31 +0000 Subject: [PATCH] Replaced reactionwith 10 sugar + 10 blood @ 400K This is all terribly spooky. --- code/modules/reagents/chemistry/recipes/others.dm | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/code/modules/reagents/chemistry/recipes/others.dm b/code/modules/reagents/chemistry/recipes/others.dm index fa1a1d2db5..95b47685ae 100644 --- a/code/modules/reagents/chemistry/recipes/others.dm +++ b/code/modules/reagents/chemistry/recipes/others.dm @@ -135,15 +135,15 @@ /datum/chemical_reaction/fermis_plush name = "Fermis plush" - id = "fermis_plush" - required_reagents = list("sugar" = 10, "mutagen" = 10) - mob_react = FALSE - required_temp = 400 + id = "fermis_plush" + required_reagents = list("sugar" = 10, "blood" = 10) + mob_react = FALSE + required_temp = 400 /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+=10) - new /obj/item/toy/plush/catgirl/fermis(location) + var/location = get_turf(holder.my_atom) + for(var/i = 1, i <= created_volume, i+=10) + new /obj/item/toy/plush/catgirl/fermis(location) ////////////////////////////////// VIROLOGY //////////////////////////////////////////