1
0
mirror of https://github.com/ComfyFactory/ComfyFactorio.git synced 2025-01-08 00:39:30 +02:00

blue filter slots fix

This commit is contained in:
MewMew 2020-04-26 23:27:16 +02:00
parent af0450960c
commit 66ab88bb33

View File

@ -101,8 +101,8 @@ local function output_cargo(wagon, passive_chest)
local wagon_inventory = wagon.entity.get_inventory(defines.inventory.cargo_wagon)
local free_slots = 0
for i = 1, wagon_inventory.get_bar() - 1, 1 do
if not wagon_inventory[i].valid_for_read then free_slots = free_slots + 1 end
end
if not wagon_inventory[i].valid_for_read and not wagon_inventory.get_filter(i) then free_slots = free_slots + 1 end
end
for i = 1, passive_chest_inventory.get_bar() - 1, 1 do
if free_slots <= 0 then return end
if passive_chest_inventory[i].valid_for_read then