aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormetamuffin <metamuffin@disroot.org>2024-12-23 13:14:03 +0100
committermetamuffin <metamuffin@noreply.codeberg.org>2025-09-17 22:43:33 +0200
commit044e8666d24a72437712512c9ed5da43042b62f1 (patch)
tree6761e263d8c4ec0c28f55d570891bc36a370cd25
parent81f4863c921841c0602ca39c94970a4ef2b9c183 (diff)
downloadhurrycurry-044e8666d24a72437712512c9ed5da43042b62f1.tar
hurrycurry-044e8666d24a72437712512c9ed5da43042b62f1.tar.bz2
hurrycurry-044e8666d24a72437712512c9ed5da43042b62f1.tar.zst
fix pizza combine operation
-rw-r--r--data/recipes/default.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/data/recipes/default.js b/data/recipes/default.js
index 74dc0895..1389aea3 100644
--- a/data/recipes/default.js
+++ b/data/recipes/default.js
@@ -240,10 +240,10 @@ const dough = process(flour.tr(FP)).as("dough").tr()
// Pizza
const pizza_dough = roll(dough)
edible_hot(
- bake(merge(pizza_dough, tomato_juice, cut(cheese), cut(mushroom))).tr(PL),
- bake(merge(pizza_dough, patty, cut(cheese))).tr(PL),
- bake(merge(pizza_dough, tomato_juice, cut(cheese))).tr(PL),
- bake(merge(pizza_dough, patty, leek)).tr(PL),
+ bake(combine(pizza_dough, tomato_juice, cut(cheese), cut(mushroom))).tr(PL),
+ bake(combine(pizza_dough, patty, cut(cheese))).tr(PL),
+ bake(combine(pizza_dough, tomato_juice, cut(cheese))).tr(PL),
+ bake(combine(pizza_dough, patty, leek)).tr(PL),
)
// Bowl