Compare commits

...

2 Commits

Author SHA1 Message Date
Gabriel Tofvesson
94250b56c9 Make trapped chest homogeneous 2024-10-04 00:37:25 +02:00
Gabriel Tofvesson
5fe4bc0c66 Allow wrapping a chest by type 2024-10-04 00:37:13 +02:00
2 changed files with 8 additions and 2 deletions

View File

@ -70,7 +70,7 @@ local function loadState(fname, node)
end
local accessNode = Chest:fromPeripheral("minecraft:trapped_chest")
local accessNode = Chest:fromPeripheral("minecraft:trapped_chest", true)
local controller = loadState(CACHE_FILE, accessNode)
local monitor = peripheral.find("monitor")

View File

@ -6,7 +6,13 @@ Chest.__index = Chest
-- Homogeneity allows chest scan to clone empty itemDetail slot to all empty slots in chest
function Chest:fromPeripheral(chest, homogeneous)
if type(chest) == "string" then
chest = peripheral.wrap(chest)
local chestResult = peripheral.wrap(chest)
if chestResult == nil then
chestResult = peripheral.find(chest)
end
chest = chestResult
end
if chest == nil then