diff options
-rw-r--r-- | data/recipes/default.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/data/recipes/default.js b/data/recipes/default.js index 7d777d31..f70adf6b 100644 --- a/data/recipes/default.js +++ b/data/recipes/default.js @@ -247,7 +247,7 @@ edible( french_fries.tr(PL), combine(PL, sear(steak), bun), combine(PL, sear(steak), french_fries), - combine(PL, sear(steak), cook(potato.tr(POT))), + // combine(PL, sear(steak), cook(potato.tr(POT))), // combine(PL, sear(steak), sear(cut(mushroom))), // combine(PL, sear(steak), sear(cut(mushroom)), french_fries), // combine(PL, sear(steak), sear(cut(mushroom)), cook(potato.tr(POT))), @@ -273,6 +273,7 @@ edible( // Noodles const noodle = cook(cut(roll(dough)).as("noodles").tr(POT)) edible( + combine(PL, noodle, tomato_juice), combine(PL, noodle, tomato_juice, cut(cheese)), // combine(PL, noodle, tomato_juice, cut(cheese), sear(patty)), ) |