Skip to content

Commit

Permalink
fix ec2 voiding some part of items when inserting in more than one slots
Browse files Browse the repository at this point in the history
  • Loading branch information
aagrishankov committed Nov 19, 2020
1 parent bafbb7f commit d8ca2ae
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -708,7 +708,7 @@ public boolean pushPattern(ICraftingPatternDetails patDetails,
new FluidStack(fluid,
(int) (amount + 0))),
Actionable.MODULATE, new MachineSource(this));
this.export.add(extractFluid);
this.export.add(extractFluid.copy());
}
for (IAEItemStack s : patter.getCondensedInputs()) {
if (s == null)
Expand All @@ -717,7 +717,7 @@ public boolean pushPattern(ICraftingPatternDetails patDetails,
this.toExport = s.copy();
continue;
}
this.export.add(s);
this.export.add(s.copy());
}

}
Expand Down

0 comments on commit d8ca2ae

Please sign in to comment.