diff options
author | metamuffin <metamuffin@disroot.org> | 2024-09-13 19:11:37 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2024-09-13 19:11:43 +0200 |
commit | 12ce7299210887d9ff4b41a9779cd7dd4b1bddbe (patch) | |
tree | 863cd347f1d0bba4f42854fcba6b4260ab3fa747 /data/recipes | |
parent | 64262cc9b13b94f6de9e96e4574cac7f7741e7d6 (diff) | |
download | hurrycurry-12ce7299210887d9ff4b41a9779cd7dd4b1bddbe.tar hurrycurry-12ce7299210887d9ff4b41a9779cd7dd4b1bddbe.tar.bz2 hurrycurry-12ce7299210887d9ff4b41a9779cd7dd4b1bddbe.tar.zst |
generalize item names in test-client
Diffstat (limited to 'data/recipes')
-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 |