From e1fa432b640237af3abd38f8bd62664ea00119a3 Mon Sep 17 00:00:00 2001 From: Gabriel Tofvesson Date: Wed, 9 Oct 2024 00:58:19 +0200 Subject: [PATCH] Refresh page after import --- itemcontroller.lua | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/itemcontroller.lua b/itemcontroller.lua index f41f790..099c60e 100644 --- a/itemcontroller.lua +++ b/itemcontroller.lua @@ -54,7 +54,7 @@ local function loadState(fname, node) return Storage:fromSerializable(ser) end end - + print("Controller must scan chests...") local nodeName = peripheral.getName(node) local storageChests = {peripheral.find("inventory")} @@ -197,12 +197,14 @@ end local function updatePageRender(state, pages) if state.nextPage ~= nil then - local changingPage = state.nextPage ~= state.currentPage + state.changingPage = state.nextPage ~= state.currentPage state.currentPage = state.nextPage state.nextPage = nil state.monitor.clear() - state._pageRender = pages[state.currentPage](state, changingPage) + state._pageRender = pages[state.currentPage](state) + else + state.changingPage = false end end @@ -228,7 +230,7 @@ local function renderDefault(state, rootElement) end local PAGES = { - MAIN = function(state, newPage) + MAIN = function(state) local found = ItemGroup.collectStacks(state.controller:find(function(stack) return not stack:isEmpty() end)) @@ -258,6 +260,7 @@ local PAGES = { end end end) + state.nextPage = state.currentPage end ) state.pageState[state.currentPage] = pageState