mirror of
https://github.com/Ellpeck/PrettyPipes.git
synced 2024-11-25 21:18:34 +01:00
Compare commits
No commits in common. "fcaedb3d5e56acdf82b53402c76494dff5ab02af" and "4968ed9ef176006c0e4a3fe9b6136013bd8f1376" have entirely different histories.
fcaedb3d5e
...
4968ed9ef1
2 changed files with 2 additions and 2 deletions
|
@ -13,7 +13,7 @@ apply plugin: 'net.minecraftforge.gradle'
|
|||
apply plugin: 'eclipse'
|
||||
apply plugin: 'maven-publish'
|
||||
|
||||
version = '1.13.2'
|
||||
version = '1.13.1'
|
||||
group = 'de.ellpeck.prettypipes' // http://maven.apache.org/guides/mini/guide-naming-conventions.html
|
||||
archivesBaseName = 'PrettyPipes'
|
||||
|
||||
|
|
|
@ -46,7 +46,7 @@ public class RetrievalModuleItem extends ModuleItem {
|
|||
var copy = filtered.copy();
|
||||
copy.setCount(this.maxExtraction);
|
||||
var dest = tile.getAvailableDestination(directions, copy, true, this.preventOversending);
|
||||
if (dest == null)
|
||||
if (dest.getRight().isEmpty())
|
||||
continue;
|
||||
var remain = dest.getRight().copy();
|
||||
// are we already waiting for crafting results? If so, don't request those again
|
||||
|
|
Loading…
Reference in a new issue