Round-robin container pulls in pipes - #1378
Open
RasmusKD wants to merge 1 commit into
Open
Conversation
With stack-per-move, the piston always pulled the first stack. A stack no output accepts came back as leftovers to the front of the chest and was pulled again every pulse, so everything behind it never moved. The piston now remembers the last pulled slot and continues from the next one, costing an unroutable stack one idle pulse per rotation instead of blocking the pipe forever. Gated by 'round-robin-pull' (default on). The pull clears the exact slot it read instead of using removeItem, which with a mid-inventory start could take a different, equal stack.
This was referenced Aug 16, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
With stack-per-move, the piston always pulls the first stack. A stack no output accepts comes back as leftovers to the front of the chest and gets pulled again every pulse, so everything behind it never moves.
The piston now remembers the last pulled slot and continues from the next one, so an unroutable stack costs one idle pulse per rotation instead of blocking the pipe forever. Gated by 'round-robin-pull' (default on).
The pull clears the exact slot it read instead of using removeItem, since with a mid-inventory start removeItem could take a different, equal stack.
Touches the same pull loop as #1376, happy to rebase whichever lands second.