diff options
| author | nokoe <nokoe@mailbox.org> | 2024-06-27 12:50:54 +0200 |
|---|---|---|
| committer | nokoe <nokoe@mailbox.org> | 2024-06-27 12:50:54 +0200 |
| commit | 0ad1882a7a9023abb164c84630c7cd6fbbeb746f (patch) | |
| tree | 1224b58658fb98d10ae1be9efc78554160230128 /data/recipes/default.ts | |
| parent | b0363cf5b56837b74308d4335d7f189f843ea770 (diff) | |
| parent | ec6377cb004ae564a8ad2fd895f8aad09b0153c6 (diff) | |
| download | hurrycurry-0ad1882a7a9023abb164c84630c7cd6fbbeb746f.tar hurrycurry-0ad1882a7a9023abb164c84630c7cd6fbbeb746f.tar.bz2 hurrycurry-0ad1882a7a9023abb164c84630c7cd6fbbeb746f.tar.zst | |
Merge branch 'master' of ssh://codeberg.org/metamuffin/undercooked
Diffstat (limited to 'data/recipes/default.ts')
| -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)) |