We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 244dd81 commit c0c39a1Copy full SHA for c0c39a1
src/main/java/com/glodblock/github/integration/jei/RecipeTransferBuilder.java
@@ -106,7 +106,7 @@ private void setFluidIn(int offset) {
106
}
107
108
private void setOutputs() {
109
- for (int index = 0; index < this.out.size(); index ++) {
+ for (int index = 0; index < this.itemOut.size() + this.fluidOut.size(); index ++) {
110
if (index < this.itemOut.size()) {
111
this.out.add(this.itemOut.get(index));
112
} else if (index - this.itemOut.size() < this.fluidOut.size()) {
0 commit comments