Skip to content

Commit

Permalink
fix size check
Browse files Browse the repository at this point in the history
  • Loading branch information
GlodBlock committed Jul 31, 2023
1 parent 244dd81 commit c0c39a1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ private void setFluidIn(int offset) {
}

private void setOutputs() {
for (int index = 0; index < this.out.size(); index ++) {
for (int index = 0; index < this.itemOut.size() + this.fluidOut.size(); index ++) {
if (index < this.itemOut.size()) {
this.out.add(this.itemOut.get(index));
} else if (index - this.itemOut.size() < this.fluidOut.size()) {
Expand Down

0 comments on commit c0c39a1

Please sign in to comment.