Implement chest import

This commit is contained in:
Gabriel Tofvesson 2024-10-08 19:25:54 +02:00
parent 956d68b6e3
commit a8d0888284

View File

@ -242,6 +242,14 @@ local PAGES = {
end,
function(page)
state.nextPage = page or state.currentPage
end,
function()
print("Importing...")
for _,nodeStack in state.node:find(function(s) return not s:isEmpty() end) do
if not state.controller:insertStack(nodeStack) then
print("Couldn't find a free slot for: "..(nodeStack:getDisplayName() or nodeStack:getName() or "[EMPTY]"))
end
end
end
)
state.pageState[state.currentPage] = pageState
@ -270,6 +278,7 @@ local width, height = monitor.getSize()
local CONTROLLER_STATE = {
controller = controller,
node = accessNode,
width = width,
height = height,
monitor = monitor,