diff options
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) { |