This commit is contained in:
Dream-Master 2016-06-22 22:42:28 +02:00
parent 024fbb4ed4
commit 759ff09662

View file

@ -77,7 +77,7 @@ public class GT_MetaTileEntity_MultiFurnace
int j = 0; int j = 0;
this.mOutputItems = new ItemStack[8 * this.mLevel]; this.mOutputItems = new ItemStack[8 * this.mLevel];
for (int i = 0; (i < 100) && (j < this.mOutputItems.length); i++) { for (int i = 0; (i < 256) && (j < this.mOutputItems.length); i++) {
if (null != (this.mOutputItems[j] = GT_ModHandler.getSmeltingOutput((ItemStack) tInputList.get(i % tInputList.size()), true, null))) { if (null != (this.mOutputItems[j] = GT_ModHandler.getSmeltingOutput((ItemStack) tInputList.get(i % tInputList.size()), true, null))) {
j++; j++;
} }