From 6a94efd5da2d59328722c50bcff9ae7213499dc0 Mon Sep 17 00:00:00 2001 From: Ketrai Date: Sat, 14 Apr 2018 12:07:22 +0200 Subject: [PATCH] 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 f0cbad5a43..8dbd8158f8 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)