Quick Answer

A basic hopper sorter exists to do one job: pull one chosen item into one storage lane while everything else keeps moving. The classic tileable design works because the filter hopper holds just enough items to produce the right comparator signal, temporarily unlocking the hopper below it.

Minecraft Wiki’s standard item sorter layout uses 41-1-1-1-1 for normal 64-stack items:

  • slot 1 holds 41 of the target item
  • slots 2 to 5 each hold 1 filler item

That number pattern is popular because it is stable in tileable designs and helps stop neighboring filters from unlocking at the same time.

Understand These Three Parts First

PartWhat it doesCommon mistake
Input line aboveCarries items past the filtersThinking the filter hopper alone is the whole system
Filter hopperHolds the target item and filler patternTreating it like a random buffer instead of a tuned signal source
Locked hopper below + torchReleases filtered items only when the signal threshold is reachedForgetting this output is supposed to stay locked most of the time

Stable 64-Stack Filter Pattern

SlotWhat to place
Slot 141 target items
Slots 2-51 filler item each

Good filler items should be:

  • something that does not normally enter your item stream,
  • preferably renamed,
  • and not a real item type you expect the sorter to handle later.

That protects the filter from eating the wrong item and breaking its own threshold.

What About 16-Stack Items

Items such as ender pearls, eggs, and snowballs cannot use the same 41-item pattern. A common stable approach is 10-1-1-1-1 instead, because the stack cap is much lower and the comparator threshold has to change with it.

Why Sorters Overflow or Cross-Trigger

SymptomUsual cause
Neighboring filters unlock tooThe filter signal climbed high enough to bleed into the next lane
Target items skip the chestThe filter numbers are wrong or the transport line is pushing beyond what the design expects
Filler items disappearThe filler item type is also present in the real item stream, or it was never renamed
One lane eventually breaks the whole wallThe sorter was built without real overflow protection

Best Troubleshooting Order

  1. Check the five slots in the filter hopper first.
  2. Confirm the filler items have not been replaced by real sorted items.
  3. Recheck comparator, dust, repeater if used, and torch orientation.
  4. Only then ask whether the transport line is too fast for the design.

Most “my sorter broke” problems are not full rebuild problems. They are slot-count problems.

When Not To Use A Basic Sorter

SituationBetter approach
You want non-stackable sortingUse a dedicated non-stackable filter design
You want one lane to handle multiple variantsThat often needs a more advanced system or manual sorting
You are building a very high-throughput main hallPlan the transport line and higher-end filter design first
A server plugin changes hopper timingVerify server behavior before blaming vanilla logic

Build Checklist Before You Tile A Whole Wall

  • Build one lane first and test it before expanding.
  • Prepare and rename filler items early.
  • Confirm hopper directions before adding storage rows.
  • Test with real item stacks immediately instead of after finishing the whole array.