From 56ef9cae0450ae1a61e1f6ab1f5c24da43dfa265 Mon Sep 17 00:00:00 2001 From: Gabriel Tofvesson Date: Thu, 3 Oct 2024 17:59:09 +0200 Subject: [PATCH] Allow passing wrapped inventories directly to Chest --- storage/chest.lua | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/storage/chest.lua b/storage/chest.lua index cc2836d..a67fe24 100644 --- a/storage/chest.lua +++ b/storage/chest.lua @@ -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