diff options
| author | metamuffin <metamuffin@disroot.org> | 2025-10-09 20:01:19 +0200 |
|---|---|---|
| committer | metamuffin <metamuffin@disroot.org> | 2025-10-09 20:01:19 +0200 |
| commit | 3bf947c7f67c9f69544f5ca1a2b329d68e68769d (patch) | |
| tree | 351d4de7af5aa02ced85c4b9d036b013196e1a8a | |
| parent | ed29ed935ad069e7af57b9af966daf3a12a3ee38 (diff) | |
| download | hurrycurry-3bf947c7f67c9f69544f5ca1a2b329d68e68769d.tar hurrycurry-3bf947c7f67c9f69544f5ca1a2b329d68e68769d.tar.bz2 hurrycurry-3bf947c7f67c9f69544f5ca1a2b329d68e68769d.tar.zst | |
Rename pizza container
| -rw-r--r-- | data/recipes/default.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/data/recipes/default.js b/data/recipes/default.js index 814ac2cc..c298296a 100644 --- a/data/recipes/default.js +++ b/data/recipes/default.js @@ -159,7 +159,7 @@ function sear(s, duration = 15) { } function bake(s, duration = 25) { const o = s.container == "rolled-dough" - ? new Item(s.name, `baked-${s.container}`) + ? new Item(s.name, `pizza`) : new Item(`baked-${s.name}`, s.container) out({ action: "passive", duration, revert_duration: duration * 2, tile: "oven", inputs: [s], outputs: [o] }) out({ action: "passive", duration: duration / 2, revert_duration: duration / 4, tile: "oven", inputs: [o], outputs: [new Item("burned")], warn: true }) |