From 27ab332e4b58c5160ea043cdfb7144907833bc4b Mon Sep 17 00:00:00 2001 From: Desolate Date: Wed, 12 Sep 2018 17:21:03 -0500 Subject: [PATCH] added soybeanoil to soybeans, juice now for soymilk --- code/modules/hydroponics/grown/beans.dm | 2 +- code/modules/reagents/chemistry/machinery/reagentgrinder.dm | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/hydroponics/grown/beans.dm b/code/modules/hydroponics/grown/beans.dm index d75791f5404..24ddf1dbbba 100644 --- a/code/modules/hydroponics/grown/beans.dm +++ b/code/modules/hydroponics/grown/beans.dm @@ -15,7 +15,7 @@ icon_dead = "soybean-dead" genes = list(/datum/plant_gene/trait/repeated_harvest) mutatelist = list(/obj/item/seeds/soya/koi) - reagents_add = list("vitamin" = 0.04, "plantmatter" = 0.05) + reagents_add = list("soybeanoil" = 0.2, "vitamin" = 0.04, "plantmatter" = 0.05) /obj/item/reagent_containers/food/snacks/grown/soybeans seed = /obj/item/seeds/soya diff --git a/code/modules/reagents/chemistry/machinery/reagentgrinder.dm b/code/modules/reagents/chemistry/machinery/reagentgrinder.dm index ce5ed918932..cbf1260c4fd 100644 --- a/code/modules/reagents/chemistry/machinery/reagentgrinder.dm +++ b/code/modules/reagents/chemistry/machinery/reagentgrinder.dm @@ -33,7 +33,6 @@ /obj/item/grown/novaflower = list("capsaicin" = 0, "condensedcapsaicin" = 0), //Blender Stuff - /obj/item/reagent_containers/food/snacks/grown/soybeans = list("soymilk" = 0), /obj/item/reagent_containers/food/snacks/grown/tomato = list("ketchup" = 0), /obj/item/reagent_containers/food/snacks/grown/wheat = list("flour" = -5), /obj/item/reagent_containers/food/snacks/grown/oat = list("flour" = -5), @@ -58,6 +57,7 @@ var/list/juice_items = list ( //Juicer Stuff + /obj/item/reagent_containers/food/snacks/grown/soybeans = list("soymilk" = 0), /obj/item/reagent_containers/food/snacks/grown/corn = list("corn_starch" = 0), /obj/item/reagent_containers/food/snacks/grown/tomato = list("tomatojuice" = 0), /obj/item/reagent_containers/food/snacks/grown/carrot = list("carrotjuice" = 0),