check funnel first to fix bug

This commit is contained in:
lcy0x1 2022-01-09 18:02:21 -08:00
parent a666f24ee0
commit f0305d7027

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;