diff options
Diffstat (limited to 'data/recipes')
-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 |