mirror of
https://github.com/PHIDIAS0303/factorio-mod-PHI.git
synced 2026-07-29 05:52:30 +09:00
.
This commit is contained in:
@@ -13,7 +13,7 @@ do
|
|||||||
local j = 1
|
local j = 1
|
||||||
|
|
||||||
for _, i in pairs(prototypes.item) do
|
for _, i in pairs(prototypes.item) do
|
||||||
if not (i.hidden or (i.subgroup and hide[i.subgroup])) then
|
if not (i.hidden or (i.subgroup and i.subgroup.name and hide[i.subgroup.name])) then
|
||||||
for _, q in pairs(prototypes.quality) do
|
for _, q in pairs(prototypes.quality) do
|
||||||
table.insert(chest_filter[q.name], {index = j, name = i.name, quality = q.name, mode = 'exactly', count = i.stack_size})
|
table.insert(chest_filter[q.name], {index = j, name = i.name, quality = q.name, mode = 'exactly', count = i.stack_size})
|
||||||
end
|
end
|
||||||
|
|||||||
@@ -6,9 +6,13 @@ local hide = {
|
|||||||
if data.raw['infinity-container']['super-infinity-chest'] then
|
if data.raw['infinity-container']['super-infinity-chest'] then
|
||||||
local sc = 1
|
local sc = 1
|
||||||
|
|
||||||
for _, i in pairs(data.raw.item) do
|
for _, c in pairs({'ammo', 'armor', 'capsule', 'gun', 'item'}) do
|
||||||
if not (i.hidden or (i.subgroup and hide[i.subgroup])) then
|
if data.raw[c] then
|
||||||
sc = sc + 1
|
for _, i in pairs(data.raw[c]) do
|
||||||
|
if not (i.hidden or (i.subgroup and hide[i.subgroup])) then
|
||||||
|
sc = sc + 1
|
||||||
|
end
|
||||||
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user