From 81228695881d7ee4022e28a6d6eb7ebbcde97cae Mon Sep 17 00:00:00 2001 From: Ketrai Date: Fri, 28 May 2021 00:07:28 +0200 Subject: [PATCH] Hotfix Hotfix --- code/modules/food/recipes_fryer_vr.dm | 5 +++-- code/modules/food/recipes_microwave_vr.dm | 8 ++++---- code/modules/food/recipes_oven_vr.dm | 4 ++-- 3 files changed, 9 insertions(+), 8 deletions(-) diff --git a/code/modules/food/recipes_fryer_vr.dm b/code/modules/food/recipes_fryer_vr.dm index 361baed9d2e..94776f9659a 100644 --- a/code/modules/food/recipes_fryer_vr.dm +++ b/code/modules/food/recipes_fryer_vr.dm @@ -29,8 +29,9 @@ result = /obj/item/weapon/reagent_containers/food/snacks/generalschicken /datum/recipe/locust - reagents = list("batter" = 5) + appliance = FRYER + reagents = list("sodiumchloride" = 1) 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..b292a9ff447 100644 --- a/code/modules/food/recipes_oven_vr.dm +++ b/code/modules/food/recipes_oven_vr.dm @@ -1,7 +1,7 @@ /datum/recipe/scorpion appliance = OVEN - reagents = list("batter" = 5) + reagents = list("sodiumchloride" = 1) 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