diff options
-rw-r--r-- | storage.lua | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/storage.lua b/storage.lua index 237d058..97796c5 100644 --- a/storage.lua +++ b/storage.lua @@ -15,9 +15,9 @@ for _,ty in ipairs(chest_types) do for _,chest in ipairs(tc) do local name = peripheral.getName(chest) chests[name] = { - content = chest.list() - size = chest.size() - pphl = chest + content = chest.list(), + size = chest.size(), + pphl = chest, } end end |