From 6a94efd5da2d59328722c50bcff9ae7213499dc0 Mon Sep 17 00:00:00 2001 From: Ketrai Date: Sat, 14 Apr 2018 12:07:22 +0200 Subject: [PATCH 1/2] Makes donuts less of a strain on resources. considering you can put 6 donuts in a box, and they're supposed to be a small food item... this overrides all the donuts to use dough slices instead of a full wad of dough. Literally, who would realistically use two boxes of flour, six eggs, and whatnot to make one batch of donuts? --- code/modules/food/recipes_microwave_vr.dm | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/code/modules/food/recipes_microwave_vr.dm b/code/modules/food/recipes_microwave_vr.dm index f0cbad5a439..8dbd8158f8c 100644 --- a/code/modules/food/recipes_microwave_vr.dm +++ b/code/modules/food/recipes_microwave_vr.dm @@ -9,6 +9,22 @@ result = /obj/item/weapon/reagent_containers/food/snacks/path_to_some_food */ +/datum/recipe/jellydonut + items = list( + /obj/item/weapon/reagent_containers/food/snacks/doughslice + +/datum/recipe/jellydonut/slime + items = list( + /obj/item/weapon/reagent_containers/food/snacks/doughslice + +/datum/recipe/jellydonut/cherry + items = list( + /obj/item/weapon/reagent_containers/food/snacks/doughslice + +/datum/recipe/donut + items = list( + /obj/item/weapon/reagent_containers/food/snacks/doughslice + /datum/recipe/sushi fruit = list("cabbage" = 1) reagents = list("rice" = 20) From 6ed59d63c5dcef14c5a71e16b809d1822b33623c Mon Sep 17 00:00:00 2001 From: Ketrai Date: Sat, 14 Apr 2018 14:17:13 +0200 Subject: [PATCH 2/2] Update recipes_microwave_vr.dm --- code/modules/food/recipes_microwave_vr.dm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/code/modules/food/recipes_microwave_vr.dm b/code/modules/food/recipes_microwave_vr.dm index 8dbd8158f8c..ddf3a70de1c 100644 --- a/code/modules/food/recipes_microwave_vr.dm +++ b/code/modules/food/recipes_microwave_vr.dm @@ -11,19 +11,19 @@ /datum/recipe/jellydonut items = list( - /obj/item/weapon/reagent_containers/food/snacks/doughslice + /obj/item/weapon/reagent_containers/food/snacks/doughslice) /datum/recipe/jellydonut/slime items = list( - /obj/item/weapon/reagent_containers/food/snacks/doughslice + /obj/item/weapon/reagent_containers/food/snacks/doughslice) /datum/recipe/jellydonut/cherry items = list( - /obj/item/weapon/reagent_containers/food/snacks/doughslice + /obj/item/weapon/reagent_containers/food/snacks/doughslice) /datum/recipe/donut items = list( - /obj/item/weapon/reagent_containers/food/snacks/doughslice + /obj/item/weapon/reagent_containers/food/snacks/doughslice) /datum/recipe/sushi fruit = list("cabbage" = 1)