From e735443b8b67bdefd1f313ca989fc8e860e30c7a Mon Sep 17 00:00:00 2001 From: izac112 Date: Sun, 23 May 2021 18:51:25 +0200 Subject: [PATCH] adds missing instances of "result =" --- code/modules/food/recipes_fryer_vr.dm | 2 +- code/modules/food/recipes_microwave_vr.dm | 8 ++++---- code/modules/food/recipes_oven_vr.dm | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/code/modules/food/recipes_fryer_vr.dm b/code/modules/food/recipes_fryer_vr.dm index 361baed9d2e..e49944fa6ff 100644 --- a/code/modules/food/recipes_fryer_vr.dm +++ b/code/modules/food/recipes_fryer_vr.dm @@ -33,4 +33,4 @@ items = list( /obj/item/weapon/reagent_containers/food/snacks/locust ) - /obj/item/weapon/reagent_containers/food/snacks/locust_cooked \ No newline at end of file + result = /obj/item/weapon/reagent_containers/food/snacks/locust_cooked \ No newline at end of file diff --git a/code/modules/food/recipes_microwave_vr.dm b/code/modules/food/recipes_microwave_vr.dm index 29d10b0305f..b2f8fa26300 100644 --- a/code/modules/food/recipes_microwave_vr.dm +++ b/code/modules/food/recipes_microwave_vr.dm @@ -164,23 +164,23 @@ items = list( /obj/item/weapon/reagent_containers/food/snacks/grub ) - /obj/item/weapon/reagent_containers/food/snacks/grub_pink + result = /obj/item/weapon/reagent_containers/food/snacks/grub_pink /datum/recipe/grub_blue fruit = list("berries" = 1) items = list( /obj/item/weapon/reagent_containers/food/snacks/grub ) - /obj/item/weapon/reagent_containers/food/snacks/grub_blue + result = /obj/item/weapon/reagent_containers/food/snacks/grub_blue /datum/recipe/grub_purple fruit = list("grapes" = 1) items = list( /obj/item/weapon/reagent_containers/food/snacks/grub ) - /obj/item/weapon/reagent_containers/food/snacks/grub_purple + result = /obj/item/weapon/reagent_containers/food/snacks/grub_purple /datum/recipe/honey_candy reagents = list("sugar" = 5, "nutriment" = 5) items = list() - /obj/item/weapon/reagent_containers/food/snacks/honey_candy + result = /obj/item/weapon/reagent_containers/food/snacks/honey_candy diff --git a/code/modules/food/recipes_oven_vr.dm b/code/modules/food/recipes_oven_vr.dm index 42cdedc87a8..1a9edfe7899 100644 --- a/code/modules/food/recipes_oven_vr.dm +++ b/code/modules/food/recipes_oven_vr.dm @@ -4,4 +4,4 @@ items = list( /obj/item/weapon/reagent_containers/food/snacks/scorpion ) - /obj/item/weapon/reagent_containers/food/snacks/scorpion_cooked \ No newline at end of file + result = /obj/item/weapon/reagent_containers/food/snacks/scorpion_cooked \ No newline at end of file