diff options
author | metamuffin <metamuffin@disroot.org> | 2024-06-27 11:41:15 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2024-06-27 11:41:15 +0200 |
commit | 4d44300394b795d4749fb95bb3fd4afaaa64b4d8 (patch) | |
tree | 9a415149db734d0de5a974c5e331a4b653e05d92 | |
parent | 0cdc668ff70f3eed492dcb5d9e68ba3d2d9fa541 (diff) | |
download | hurrycurry-4d44300394b795d4749fb95bb3fd4afaaa64b4d8.tar hurrycurry-4d44300394b795d4749fb95bb3fd4afaaa64b4d8.tar.bz2 hurrycurry-4d44300394b795d4749fb95bb3fd4afaaa64b4d8.tar.zst |
passive foodprocessor
-rw-r--r-- | data/recipes/default.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/data/recipes/default.ts b/data/recipes/default.ts index f0a9ef6b..dd662081 100644 --- a/data/recipes/default.ts +++ b/data/recipes/default.ts @@ -68,7 +68,7 @@ export function process(from: string, to?: string) { const i = from + "-foodprocessor" const o = (to ?? (from + "-juice")) + "-foodprocessor" out({ action: "instant", inputs: ["foodprocessor", from], outputs: [i] }) - out({ action: "active", duration: 3, inputs: [i], outputs: [o] }) + out({ action: "passive", duration: 5, inputs: [i], outputs: [o] }) } export function bake(from: string, to?: string) { const o = (to ?? ("cooked-" + from)) |