Fix invalid reagent id (#27517)

This commit is contained in:
Mikhail Dzianishchyts
2024-12-01 23:23:05 +00:00
committed by GitHub
parent e8dc995f02
commit 8058cc7756
@@ -137,28 +137,28 @@
result = /obj/item/food/donut/blumpkin/jelly/cherry
/datum/recipe/microwave/bungo_donut
reagents = list("bungojuice" = 5, "coldsauce" = 5)
reagents = list("bungojuice" = 5, "frostoil" = 5)
items = list(
/obj/item/food/donut
)
result = /obj/item/food/donut/bungo
/datum/recipe/microwave/bungo_donut/jelly
reagents = list("bungojuice" = 5, "coldsauce" = 5, "berryjuice" = 5)
reagents = list("bungojuice" = 5, "frostoil" = 5, "berryjuice" = 5)
items = list(
/obj/item/food/donut
)
result = /obj/item/food/donut/bungo/jelly
/datum/recipe/microwave/bungo_donut/jelly/slime
reagents = list("bungojuice" = 5, "coldsauce" = 5, "slimejelly" = 5)
reagents = list("bungojuice" = 5, "frostoil" = 5, "slimejelly" = 5)
items = list(
/obj/item/food/donut
)
result = /obj/item/food/donut/bungo/jelly/slime
/datum/recipe/microwave/bungo_donut/jelly/cherry
reagents = list("bungojuice" = 5, "coldsauce" = 5, "cherryjelly" = 5)
reagents = list("bungojuice" = 5, "frostoil" = 5, "cherryjelly" = 5)
items = list(
/obj/item/food/donut
)