diff options
author | metamuffin <metamuffin@disroot.org> | 2024-09-14 14:49:58 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2024-09-14 14:49:58 +0200 |
commit | 577c5324fa495adbde47a4d16bd39a4570a559b6 (patch) | |
tree | 19ed834499cc4afc57921f349ebabbea0124273d /data/recipes | |
parent | 09a4c235f652e876f40e81626be84371b250545d (diff) | |
download | hurrycurry-577c5324fa495adbde47a4d16bd39a4570a559b6.tar hurrycurry-577c5324fa495adbde47a4d16bd39a4570a559b6.tar.bz2 hurrycurry-577c5324fa495adbde47a4d16bd39a4570a559b6.tar.zst |
fix burger recipes?
Diffstat (limited to 'data/recipes')
-rw-r--r-- | data/recipes/default.ts | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/data/recipes/default.ts b/data/recipes/default.ts index b7ccf48d..849a7076 100644 --- a/data/recipes/default.ts +++ b/data/recipes/default.ts @@ -217,16 +217,12 @@ edible( ) // Burger -const b_bun = cut(bun) const b_patty = sear(cut(steak).as("patty")) -const b_tomato = cut(tomato) -const b_lettuce = cut(lettuce) -const b_cheese = cut(cheese) edible( - combine(PL, b_bun, b_patty, b_cheese), - combine(PL, b_bun, b_patty, b_cheese, b_lettuce), - combine(PL, b_bun, b_patty, b_cheese, b_tomato), - combine(PL, b_bun, b_cheese, b_lettuce, b_tomato), + combine(PL, cut(bun), b_patty, cut(cheese)), + combine(PL, cut(bun), b_patty, cut(cheese), cut(lettuce)), + combine(PL, cut(bun), b_patty, cut(cheese), cut(tomato)), + combine(PL, cut(bun), cut(cheese), cut(lettuce), cut(tomato)), ) // Soup |