From 5fe4bc0c66a52fa0e5d8a43fd3aebf542b23468c Mon Sep 17 00:00:00 2001 From: Gabriel Tofvesson Date: Fri, 4 Oct 2024 00:37:13 +0200 Subject: [PATCH] Allow wrapping a chest by type --- storage/chest.lua | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) 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