Merge pull request #2597 from lcy0x1/funnel-fix

- Fixed backlog on belts not actively extracted by funnels that were blocked while the items accumulated
This commit is contained in:
simibubi 2022-03-03 15:07:32 +01:00 committed by GitHub
commit 21ad6125f5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -150,6 +150,11 @@ public class BeltInventory {
continue;
}
// Belt Funnels
if (BeltFunnelInteractionHandler.checkForFunnels(this, currentItem, nextOffset))
continue;
if (noMovement)
continue;
@ -157,10 +162,6 @@ public class BeltInventory {
if (BeltTunnelInteractionHandler.flapTunnelsAndCheckIfStuck(this, currentItem, nextOffset))
continue;
// Belt Funnels
if (BeltFunnelInteractionHandler.checkForFunnels(this, currentItem, nextOffset))
continue;
// Horizontal Crushing Wheels
if (BeltCrusherInteractionHandler.checkForCrushers(this, currentItem, nextOffset))
continue;