diff --git a/storage/chest.lua b/storage/chest.lua index a67fe24..43b0051 100644 --- a/storage/chest.lua +++ b/storage/chest.lua @@ -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