fix(coal-crafter): add missing suck item

This commit is contained in:
Guillaume ARM 2024-05-20 01:55:28 +02:00
parent e02a7a70c2
commit d971f0acf3

View File

@ -96,6 +96,12 @@ local function main()
error('cannot pushItems from storage to buffer') error('cannot pushItems from storage to buffer')
end end
local suckOk, suckErr = turtle.suck()
if not suckOk then
error('cannot suck into front buffer chest: ' .. tostring(suckErr))
end
prepareCraftShape() prepareCraftShape()
craft() craft()
dropSelected() dropSelected()