aboutsummaryrefslogtreecommitdiff
path: root/data/recipes/default.ts
diff options
context:
space:
mode:
authornokoe <nokoe@mailbox.org>2024-06-27 12:50:54 +0200
committernokoe <nokoe@mailbox.org>2024-06-27 12:50:54 +0200
commit0ad1882a7a9023abb164c84630c7cd6fbbeb746f (patch)
tree1224b58658fb98d10ae1be9efc78554160230128 /data/recipes/default.ts
parentb0363cf5b56837b74308d4335d7f189f843ea770 (diff)
parentec6377cb004ae564a8ad2fd895f8aad09b0153c6 (diff)
downloadhurrycurry-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.ts2
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))