From a4795729261334178677400b8742392b12aa1bf3 Mon Sep 17 00:00:00 2001 From: Gabriel Tofvesson Date: Fri, 4 Oct 2024 00:40:31 +0200 Subject: [PATCH] Fix node inventory access check --- itemcontroller.lua | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/itemcontroller.lua b/itemcontroller.lua index fb81e49..111650a 100644 --- a/itemcontroller.lua +++ b/itemcontroller.lua @@ -71,7 +71,8 @@ end local accessNode = Chest:fromPeripheral("minecraft:trapped_chest", true) -local controller = loadState(CACHE_FILE, accessNode) +---@diagnostic disable-next-line: need-check-nil +local controller = loadState(CACHE_FILE, accessNode:getInventory()) local monitor = peripheral.find("monitor") local width, height = monitor.getSize()