diff options
author | metamuffin <metamuffin@disroot.org> | 2024-12-23 13:14:03 +0100 |
---|---|---|
committer | metamuffin <metamuffin@noreply.codeberg.org> | 2025-09-17 22:43:33 +0200 |
commit | 044e8666d24a72437712512c9ed5da43042b62f1 (patch) | |
tree | 6761e263d8c4ec0c28f55d570891bc36a370cd25 | |
parent | 81f4863c921841c0602ca39c94970a4ef2b9c183 (diff) | |
download | hurrycurry-044e8666d24a72437712512c9ed5da43042b62f1.tar hurrycurry-044e8666d24a72437712512c9ed5da43042b62f1.tar.bz2 hurrycurry-044e8666d24a72437712512c9ed5da43042b62f1.tar.zst |
fix pizza combine operation
-rw-r--r-- | data/recipes/default.js | 8 |
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 |