diff options
author | metamuffin <metamuffin@disroot.org> | 2025-09-25 17:56:57 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2025-09-25 17:56:57 +0200 |
commit | 2a2f6969142994698c1b52e7807972a6f6247fcf (patch) | |
tree | 2d48eea34562376ba9cc36a2d5c66c51769942f1 /data/recipes | |
parent | 0147200021599bf45a2313b815c93093d3e05bd3 (diff) | |
download | hurrycurry-2a2f6969142994698c1b52e7807972a6f6247fcf.tar hurrycurry-2a2f6969142994698c1b52e7807972a6f6247fcf.tar.bz2 hurrycurry-2a2f6969142994698c1b52e7807972a6f6247fcf.tar.zst |
allow nigiri assembly on plate
Diffstat (limited to 'data/recipes')
-rw-r--r-- | data/recipes/default.js | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/data/recipes/default.js b/data/recipes/default.js index 1c4b7445..20359a5e 100644 --- a/data/recipes/default.js +++ b/data/recipes/default.js @@ -287,7 +287,10 @@ edible( ) // Rice and nigiri -edible(container_add(cut(fish), cook(rice.tr(POT))).as("nigiri").tr(PL)) +edible( + container_add(cut(fish), cook(rice.tr(POT))).as("nigiri").tr(PL), + container_add(cook(rice.tr(POT).tr(PL)), cut(fish)).as("nigiri") +) // coconut milk and strawberry puree const strawberry_puree = process(strawberry.tr(FP)).as("strawberry-puree") |