2No2Name / hopperOptimizations

A mod that optimizes hoppers and their interactions with entities and inventories. It drastically reduces hopper lag without changing any behavior.
MIT License
64 stars 9 forks source link

Hoppers pick up items in a different order when using optimizedEntityHopperInteraction #1

Closed 2No2Name closed 4 years ago

2No2Name commented 4 years ago

In vanilla, hoppers try to pick up items from a sorted list, first to last. The item entities in the pickup area are sorted by:

  1. chunk section (probably lower coordinates first)
  2. tick time they entered their chunk section (earlier is first)

With optimizedEntityHopperInteraction the item list is sorted by:

  1. tick time the item came near the hopper (earlier is first)
2No2Name commented 4 years ago

Set to won't fix, unless someone actually encounters a problem caused by this.