mirror of
https://github.com/Ellpeck/PrettyPipes.git
synced 2024-11-22 19:58:35 +01:00
parent
4968ed9ef1
commit
c94907e327
1 changed files with 1 additions and 1 deletions
|
@ -46,7 +46,7 @@ public class RetrievalModuleItem extends ModuleItem {
|
||||||
var copy = filtered.copy();
|
var copy = filtered.copy();
|
||||||
copy.setCount(this.maxExtraction);
|
copy.setCount(this.maxExtraction);
|
||||||
var dest = tile.getAvailableDestination(directions, copy, true, this.preventOversending);
|
var dest = tile.getAvailableDestination(directions, copy, true, this.preventOversending);
|
||||||
if (dest.getRight().isEmpty())
|
if (dest == null)
|
||||||
continue;
|
continue;
|
||||||
var remain = dest.getRight().copy();
|
var remain = dest.getRight().copy();
|
||||||
// are we already waiting for crafting results? If so, don't request those again
|
// are we already waiting for crafting results? If so, don't request those again
|
||||||
|
|
Loading…
Reference in a new issue