diff options
Diffstat (limited to 'data')
| -rw-r--r-- | data/recipes/default.ts | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/data/recipes/default.ts b/data/recipes/default.ts index a908d61c..b7ccf48d 100644 --- a/data/recipes/default.ts +++ b/data/recipes/default.ts @@ -204,10 +204,10 @@ const bun = bake(dough).as("bun")  edible(bun.tr(PL))  // Steak -const steak_pot = sear(steak).as("steak") +const seared_steak = sear(steak)  edible( -    combine(PL, steak_pot, bun), -    combine(PL, steak_pot), +    combine(PL, seared_steak, bun), +    combine(PL, seared_steak),  )  // Salad |