Fix dupe bug with buggy recipes that have a bigger itemstack size requirement

This commit is contained in:
Raoul Van den Berge
2016-07-16 14:10:46 +02:00
parent 1c90b7aafe
commit 35f6714cef

View File

@@ -242,7 +242,7 @@ public class TileGrid extends TileNode implements IGrid {
ItemStack took = RefinedStorageUtils.extractItem(network, possibility, 1);
if (took != null) {
matrix.setInventorySlotContents(i, possibility);
matrix.setInventorySlotContents(i, took);
break;
}