Skip to content

Commit 2b7697b

Browse files
committed
Fix
1 parent 740be2c commit 2b7697b

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

code/modules/food_and_drinks/recipes/food_mixtures.dm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
parts |= reqs
3333

3434
//rarely, but a few cooking recipes (cake cat & co) don't result food items.
35-
if(!PERFORM_ALL_TESTS(focus_only/check_foodtypes) || non_craftable || !ispath(result, /obj/item/food))
35+
if(/*!PERFORM_ALL_TESTS(focus_only/check_foodtypes) || */non_craftable || !ispath(result, /obj/item/food))
3636
return
3737

3838
// Food made from these recipes should inherit the food types of the food ingredients used in it

maplestation_modules/code/modules/food_and_drinks/food/starfruit.dm

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
/datum/reagent/consumable/starfruit_juice = 10,
2828
)
2929
tastes = list("tender meat" = 2, "sweet sauce" = 1, "smokey BBQ" = 1, "sugary glaze" = 1)
30-
foodtypes = MEAT | VEGETABLES | SUGAR
30+
foodtypes = MEAT | VEGETABLES | FRUIT | SUGAR
3131
crafting_complexity = FOOD_COMPLEXITY_5
3232

3333
/obj/item/food/starfruit_chicken_alfredo
@@ -55,7 +55,7 @@
5555
/datum/reagent/consumable/nutriment/vitamin = 4,
5656
)
5757
tastes = list("boiled rice" = 2, "starfruit" = 2, "fish" = 2)
58-
foodtypes = SEAFOOD | VEGETABLES | GRAIN
58+
foodtypes = VEGETABLES | GRAIN | FRUIT | SUGAR | SEAFOOD
5959
w_class = WEIGHT_CLASS_SMALL
6060
crafting_complexity = FOOD_COMPLEXITY_3
6161

0 commit comments

Comments
 (0)