Fix iterator bug

This commit is contained in:
Gabriel Tofvesson 2024-10-03 16:46:48 +02:00
parent 585ad38334
commit b763d28000

View File

@ -13,7 +13,7 @@ function Storage:fromPeripherals(names)
local obj = {
count = #names
}
for name,homogeneous in names do
for name,homogeneous in pairs(names) do
table.insert(obj, Chest:fromPeripheral(name, homogeneous))
end