diff options
author | metamuffin <metamuffin@disroot.org> | 2025-09-21 21:38:33 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2025-09-21 21:38:35 +0200 |
commit | e1f6d55b1a26458d132ba58a72c0e0def1bc121e (patch) | |
tree | 4dce0abe240954cdd15c11e43422e2045b156ece /data/recipes/default.js | |
parent | cdc7b759a1d4e44493378c22d43217d50c40173a (diff) | |
download | hurrycurry-e1f6d55b1a26458d132ba58a72c0e0def1bc121e.tar hurrycurry-e1f6d55b1a26458d132ba58a72c0e0def1bc121e.tar.bz2 hurrycurry-e1f6d55b1a26458d132ba58a72c0e0def1bc121e.tar.zst |
rename cutting and rolling board everywhere
Diffstat (limited to 'data/recipes/default.js')
-rw-r--r-- | data/recipes/default.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/data/recipes/default.js b/data/recipes/default.js index f70adf6b..cc2dfab4 100644 --- a/data/recipes/default.js +++ b/data/recipes/default.js @@ -119,12 +119,12 @@ function crate(s) { } function cut(s, two) { const o = new Item(`sliced-${s.name}`, s.container) - out({ action: "active", inputs: [s], outputs: [o, two ? o : null], tile: "cuttingboard", duration: 2 }) + out({ action: "active", inputs: [s], outputs: [o, two ? o : null], tile: "cutting-board", duration: 2 }) return o } function roll(s, two) { const o = new Item(`rolled-${s.name}`, s.container) - out({ action: "active", inputs: [s], outputs: [o, two ? o : null], tile: "rollingboard", duration: 2 }) + out({ action: "active", inputs: [s], outputs: [o, two ? o : null], tile: "rolling-board", duration: 2 }) return o } function cook(s, duration = 20) { |