Fix mining wells not put two or more stacks in pipe
This commit is contained in:
parent
c352bc53ad
commit
2e7368150e
1 changed files with 1 additions and 1 deletions
|
@ -78,7 +78,7 @@ public class TileMiningWell extends TileMachine implements IMachine, IPowerRecep
|
||||||
}
|
}
|
||||||
|
|
||||||
if (Utils.addToRandomPipeEntry(this, ForgeDirection.UNKNOWN, stack) && stack.stackSize <= 0)
|
if (Utils.addToRandomPipeEntry(this, ForgeDirection.UNKNOWN, stack) && stack.stackSize <= 0)
|
||||||
return;
|
continue;
|
||||||
|
|
||||||
// Throw the object away.
|
// Throw the object away.
|
||||||
// TODO: factorize that code
|
// TODO: factorize that code
|
||||||
|
|
Loading…
Reference in a new issue