Implement chest import
This commit is contained in:
parent
956d68b6e3
commit
a8d0888284
@ -242,6 +242,14 @@ local PAGES = {
|
|||||||
end,
|
end,
|
||||||
function(page)
|
function(page)
|
||||||
state.nextPage = page or state.currentPage
|
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
|
end
|
||||||
)
|
)
|
||||||
state.pageState[state.currentPage] = pageState
|
state.pageState[state.currentPage] = pageState
|
||||||
@ -270,6 +278,7 @@ local width, height = monitor.getSize()
|
|||||||
|
|
||||||
local CONTROLLER_STATE = {
|
local CONTROLLER_STATE = {
|
||||||
controller = controller,
|
controller = controller,
|
||||||
|
node = accessNode,
|
||||||
width = width,
|
width = width,
|
||||||
height = height,
|
height = height,
|
||||||
monitor = monitor,
|
monitor = monitor,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user