From 99abbbe5262b2c3505b508ca0bcc390a7135723e Mon Sep 17 00:00:00 2001 From: Gabriel Tofvesson Date: Thu, 3 Oct 2024 16:48:44 +0200 Subject: [PATCH] Perform scan on first chest wrap --- storage/chest.lua | 2 ++ 1 file changed, 2 insertions(+) diff --git a/storage/chest.lua b/storage/chest.lua index a54f8a9..20db286 100644 --- a/storage/chest.lua +++ b/storage/chest.lua @@ -18,6 +18,8 @@ function Chest:fromPeripheral(name, homogeneous) setmetatable(obj, self) obj.__index = obj + obj:rescan() + return obj end