mirror of
https://github.com/PHIDIAS0303/factorio-mod-PHI.git
synced 2026-07-26 21:16:23 +09:00
17 lines
389 B
Lua
17 lines
389 B
Lua
local hide = {
|
|
['parameters'] = true,
|
|
['spawnables'] = true,
|
|
}
|
|
|
|
if data.raw['infinity-container']['super-infinity-chest'] then
|
|
local sc = 1
|
|
|
|
for _, i in pairs(data.raw.item) do
|
|
if not (i.hidden or (i.subgroup and hide[i.subgroup])) then
|
|
sc = sc + 1
|
|
end
|
|
end
|
|
|
|
data.raw['infinity-container']['super-infinity-chest'].inventory_size = sc
|
|
end
|