This can cause an issue where all requests are reported to the circuit network as satisfied, but the the buffer chest is only half full.
Steps to replicate
1. Create an isolated logistic network with no logistic robots.
2. Add a single buffer chest.
3. Set the request for any count R of items. (Easiest to replicate with a single stack request)
4. Put any number P less than R items in the chest. (Easiest to replicate with a half stack of items)
5. Read the requests from the circuit network.
Expected:
R = Total requests from buffer chest
P = Provisions from buffer chest.
The read requests will be R-P
Actual:
The read requests will be ((R-P)-P) or 0, whichever number is more positive.
Example 1
Example 2