mirror of
https://github.com/Creators-of-Create/Create.git
synced 2024-12-15 04:03:42 +01:00
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:
commit
21ad6125f5
1 changed files with 11 additions and 10 deletions
|
@ -150,6 +150,11 @@ public class BeltInventory {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// Belt Funnels
|
||||||
|
if (BeltFunnelInteractionHandler.checkForFunnels(this, currentItem, nextOffset))
|
||||||
|
continue;
|
||||||
|
|
||||||
if (noMovement)
|
if (noMovement)
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
|
@ -157,10 +162,6 @@ public class BeltInventory {
|
||||||
if (BeltTunnelInteractionHandler.flapTunnelsAndCheckIfStuck(this, currentItem, nextOffset))
|
if (BeltTunnelInteractionHandler.flapTunnelsAndCheckIfStuck(this, currentItem, nextOffset))
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
// Belt Funnels
|
|
||||||
if (BeltFunnelInteractionHandler.checkForFunnels(this, currentItem, nextOffset))
|
|
||||||
continue;
|
|
||||||
|
|
||||||
// Horizontal Crushing Wheels
|
// Horizontal Crushing Wheels
|
||||||
if (BeltCrusherInteractionHandler.checkForCrushers(this, currentItem, nextOffset))
|
if (BeltCrusherInteractionHandler.checkForCrushers(this, currentItem, nextOffset))
|
||||||
continue;
|
continue;
|
||||||
|
|
Loading…
Reference in a new issue