As in title, passive providers no longer flash 'out of network' sign, but requester chests still never get supplied, despite there being enough bots, materials, roboport coverage and whatnot. No mods.
[0.16.10] Requester chests still do not work
[0.16.10] Requester chests still do not work
- Attachments
-
- requester.zip
- Save
- (12.75 MiB) Downloaded 108 times
-
- factorio-current.log
- Log file
- (14.27 KiB) Downloaded 102 times
Re: [0.16.10] Requester chests still do not work
My guess would be that if requester got corrupted on migration when used in 0.16.8/9 it will need to be reset.
Or go back and use save from 0.16.7 and it should work.
Or go back and use save from 0.16.7 and it should work.
Last edited by orzelek on Sat Dec 30, 2017 12:37 pm, edited 1 time in total.
Re: [0.16.10] Requester chests still do not work
I see this problem in my base as well. Toggling "Request from buffer chests" fixes the problem. Tedious but it works.
Re: [0.16.10] Requester chests still do not work
I was having the same issue after upgrading to 0.16.10.
Copying settings or even just placing a blueprint over the requesters from the map also fixes them
Copying settings or even just placing a blueprint over the requesters from the map also fixes them
Re: [0.16.10] Requester chests still do not work
Yup, problem of viewtopic.php?f=11&t=55850 still exists. Seems to be for requester chests that were empty and nothing was available to refill them at the time of the save.
Re: [0.16.10] Requester chests still do not work
The following console command seemed to fix things for me:
Code: Select all
/c for k,v in pairs(game.player.surface.find_entities_filtered{name="logistic-chest-requester"}) do local s1 = v.get_request_slot(1); if (s1) then local n = s1.name; local c=s1.count; v.clear_request_slot(1); v.set_request_slot({name=n,count=c},1); end; end
Re: [0.16.10] Requester chests still do not work
Thanks for the save and simple example and sorry for the trouble.
There was yet-another problem of the internal requester chest data migration between saves of different version.
I fixed it for 0.16.11.
There was yet-another problem of the internal requester chest data migration between saves of different version.
I fixed it for 0.16.11.
Re: [0.16.10] Requester chests still do not work
Whoa.. thanks for that!! I went from having 9k bots "Available" to 0 instantly while they're catching up! Much appreciated! (no sarcasm, this is a ton better than going through all the requester chests one by one as I find the non working ones... )ajtowns wrote:The following console command seemed to fix things for me:
Code: Select all
/c for k,v in pairs(game.player.surface.find_entities_filtered{name="logistic-chest-requester"}) do local s1 = v.get_request_slot(1); if (s1) then local n = s1.name; local c=s1.count; v.clear_request_slot(1); v.set_request_slot({name=n,count=c},1); end; end
Re: [0.16.10] Requester chests still do not work
I really should be preparing for my New Year's Eve party, so feel free to take a break and leave the bug-fixing for 2018.kovarex wrote:I fixed it for 0.16.11.