mirror of
https://github.com/ComfyFactory/ComfyFactorio.git
synced 2025-02-15 13:53:09 +02:00
removed items with equipment grids from sorting
This commit is contained in:
parent
7e64c14ec1
commit
8984d7fa1c
@ -166,7 +166,9 @@ local function auto_stash(player)
|
|||||||
chest_floating_text_y_offsets = {}
|
chest_floating_text_y_offsets = {}
|
||||||
|
|
||||||
for name, count in pairs(inventory.get_contents()) do
|
for name, count in pairs(inventory.get_contents()) do
|
||||||
insert_item_into_chest(inventory, chests, filtered_chests, name, count)
|
if not inventory.find_item_stack(name).grid then
|
||||||
|
insert_item_into_chest(inventory, chests, filtered_chests, name, count)
|
||||||
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user