- Tried to save and restore logistics auto trash filters via script on a spider-vehicle that already had other logistic requests configured in random slots.
- Auto trash filters were saved correctly (infinite values are returned as 2^32-1), but no effect was observed when the script tried to restore them. Tried both setting individual entries with "entity.auto_trash_filters[name]=count" and by setting the whole table with "entity.auto_trash_filters = {[name]=count, ...}"
- Further investigation revealed certain cases where a filter will be set. It appears that it will only set trash filters on slots starting at slot 1, and only if doing so will overwrite an existing logistic request entry. The new entry will have a request amount of 0 and the correct trash amount for the new item, even if that slot previously contained a nonzero request for the same item.
- Assigning auto trash filters to item types already requested should alter the auto trash amounts for the existing requests. Items not already requested should be added as 0-item requests in empty slots before setting the auto trash amount.