From a8d08882844adcffcf24b7cbaf984e559b33a525 Mon Sep 17 00:00:00 2001 From: Gabriel Tofvesson Date: Tue, 8 Oct 2024 19:25:54 +0200 Subject: [PATCH] Implement chest import --- itemcontroller.lua | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/itemcontroller.lua b/itemcontroller.lua index e67adb1..26cb7fc 100644 --- a/itemcontroller.lua +++ b/itemcontroller.lua @@ -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,