Compare commits

...

2 Commits

Author SHA1 Message Date
Gabriel Tofvesson
a479572926 Fix node inventory access check 2024-10-04 00:40:31 +02:00
Gabriel Tofvesson
595da4f179 Expose chest inventory 2024-10-04 00:40:16 +02:00
2 changed files with 6 additions and 1 deletions

View File

@ -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()

View File

@ -160,6 +160,10 @@ function Chest:getName()
return self.name
end
function Chest:getInventory()
return self.chest
end
function Chest:find(query)
local result = {}