Compare commits
2 Commits
3f0487bb48
...
94250b56c9
Author | SHA1 | Date | |
---|---|---|---|
![]() |
94250b56c9 | ||
![]() |
5fe4bc0c66 |
@ -70,7 +70,7 @@ local function loadState(fname, node)
|
|||||||
end
|
end
|
||||||
|
|
||||||
|
|
||||||
local accessNode = Chest:fromPeripheral("minecraft:trapped_chest")
|
local accessNode = Chest:fromPeripheral("minecraft:trapped_chest", true)
|
||||||
local controller = loadState(CACHE_FILE, accessNode)
|
local controller = loadState(CACHE_FILE, accessNode)
|
||||||
local monitor = peripheral.find("monitor")
|
local monitor = peripheral.find("monitor")
|
||||||
|
|
||||||
|
@ -6,7 +6,13 @@ Chest.__index = Chest
|
|||||||
-- Homogeneity allows chest scan to clone empty itemDetail slot to all empty slots in chest
|
-- Homogeneity allows chest scan to clone empty itemDetail slot to all empty slots in chest
|
||||||
function Chest:fromPeripheral(chest, homogeneous)
|
function Chest:fromPeripheral(chest, homogeneous)
|
||||||
if type(chest) == "string" then
|
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
|
end
|
||||||
|
|
||||||
if chest == nil then
|
if chest == nil then
|
||||||
|
Loading…
x
Reference in New Issue
Block a user