[boskid][2.0.42] deconstruction planners entity_filters does not clear excess when overwritten

This subforum contains all the issues which we already resolved.
User avatar
SunBlade
Burner Inserter
Burner Inserter
Posts: 12
Joined: Mon Jan 15, 2018 8:27 am
Contact:

[boskid][2.0.42] deconstruction planners entity_filters does not clear excess when overwritten

Post by SunBlade »

Issue
  • assigning a new table to the entity_filters property of a deconstruction planner does not replace ALL filter entries.
  • while a sparse table clears unassigned indices below its highest index, filter entries above its highest index will not be cleared.
How to reproduce

Code: Select all

local bp = game.player.cursor_stack -- use either this
local bp = game.blueprints[1] -- or this
local bp = magic -- or find your deconstruction planner any other way
-- once you have your deconstruction planner,
-- the below snippet should give a sparse pattern
local arr = {}
for k,v in pairs(bp.entity_filters) do
  arr[#arr+2] = v
end
bp.entity_filters = arr
  1. create a deconstruction planner.
  2. add some filters near the end.
  3. use the above code to assign a sparse table.
  • planner.png
    planner.png (2.94 MiB) Viewed 898 times
  • the supplied example save has a planner to test.
  • repeated use of this console command shows the issue.
  • /c local bp = game.blueprints[1] local arr = {} for k,v in pairs(bp.entity_filters) do arr[#arr+2] = v end bp.entity_filters = arr
Expected result
  • filters are moved into a pattern at the beginning.
    expected.png
    expected.png (2.42 MiB) Viewed 898 times
Actual result
  • filters at the end persist, until the new table reaches them.
    bug.png
    bug.png (2.76 MiB) Viewed 898 times
Attachments
example.zip
(478.93 KiB) Downloaded 8 times
factorio-current.log
(9.39 KiB) Downloaded 10 times
Live your life, you got only one.
User avatar
boskid
Factorio Staff
Factorio Staff
Posts: 3759
Joined: Thu Dec 14, 2017 6:56 pm
Contact:

Re: [boskid][2.0.42] deconstruction planners entity_filters does not clear excess when overwritten

Post by boskid »

Thanks for the report. Issue is now fixed for 2.0.43.
User avatar
SunBlade
Burner Inserter
Burner Inserter
Posts: 12
Joined: Mon Jan 15, 2018 8:27 am
Contact:

Re: [boskid][2.0.42] deconstruction planners entity_filters does not clear excess when overwritten

Post by SunBlade »

Thanks for the fast work. but ...
the exact same bug is also present for tile_filters.
Live your life, you got only one.
User avatar
boskid
Factorio Staff
Factorio Staff
Posts: 3759
Joined: Thu Dec 14, 2017 6:56 pm
Contact:

Re: [boskid][2.0.42] deconstruction planners entity_filters does not clear excess when overwritten

Post by boskid »

SunBlade wrote: Tue Mar 25, 2025 4:26 pm Thanks for the fast work. but ...
the exact same bug is also present for tile_filters.
I see. This is now also fixed for 2.0.43.
Post Reply

Return to “Resolved Problems and Bugs”