diff options
| author | metamuffin <metamuffin@disroot.org> | 2025-10-13 22:22:30 +0200 |
|---|---|---|
| committer | metamuffin <metamuffin@disroot.org> | 2025-10-13 22:22:34 +0200 |
| commit | a05f2651634f942a372eecb401e48e515f9da9f8 (patch) | |
| tree | 19baa935fa79be33abfffcf464eb63780283a85f /data | |
| parent | 7c37cd499f0e5c0b9d4029679f8fa8136f61e416 (diff) | |
| download | hurrycurry-a05f2651634f942a372eecb401e48e515f9da9f8.tar hurrycurry-a05f2651634f942a372eecb401e48e515f9da9f8.tar.bz2 hurrycurry-a05f2651634f942a372eecb401e48e515f9da9f8.tar.zst | |
Noodle crate recipe
Diffstat (limited to 'data')
| -rw-r--r-- | data/recipes/default.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/data/recipes/default.js b/data/recipes/default.js index 430690a3..2e27de85 100644 --- a/data/recipes/default.js +++ b/data/recipes/default.js @@ -308,7 +308,8 @@ edible("soups", ) // Noodles -const noodle = cook(cut(roll(dough)).as("noodles").tr(POT)) +const raw_noodles = either(cut(roll(dough)).as("noodles"), crate("noodles")) +const noodle = cook(raw_noodles.tr(POT)) edible("noodles", combine(PL, noodle, tomato_soup, cut(cheese)), group_hidden(combine(PL, noodle, tomato_soup)), |