Minor Fix
Actually makes the smelt at once cap bigger.
This commit is contained in:
parent
f56e821c1b
commit
9ea49989b6
1 changed files with 1 additions and 1 deletions
|
@ -67,7 +67,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++;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue