initial commit

This commit is contained in:
sky
2024-06-12 03:13:12 +00:00
commit c8e5526839
2 changed files with 49 additions and 0 deletions

5
inventory_list.lua Normal file
View File

@@ -0,0 +1,5 @@
local inventories = table.pack(peripheral.find('inventories'))
local items = {}
for i,v in ipairs(inventories) do
table.insert(items, v.list())
end