Allow passing wrapped inventories directly to Chest

This commit is contained in:
Gabriel Tofvesson 2024-10-03 17:59:09 +02:00
parent a124e870c7
commit 56ef9cae04

View File

@ -4,14 +4,17 @@ local Chest = {}
Chest.__index = Chest
-- Homogeneity allows chest scan to clone empty itemDetail slot to all empty slots in chest
function Chest:fromPeripheral(name, homogeneous)
local chest = peripheral.wrap(name)
function Chest:fromPeripheral(chest, homogeneous)
if type(chest) == "string" then
chest = peripheral.wrap(chest)
end
if chest == nil then
return nil
end
local obj = {
name = name,
name = peripheral.getName(chest),
chest = chest,
size = chest.size(),
homogeneous = homogeneous