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