Fix multiblock recipe search fix #1044
This commit is contained in:
parent
b047ab56b2
commit
94f8581477
1 changed files with 11 additions and 11 deletions
|
@ -641,11 +641,11 @@ public abstract class GT_MetaTileEntity_MultiBlockBase extends MetaTileEntity {
|
||||||
|
|
||||||
public ArrayList<ItemStack> getStoredOutputs() {
|
public ArrayList<ItemStack> getStoredOutputs() {
|
||||||
ArrayList<ItemStack> rList = new ArrayList<ItemStack>();
|
ArrayList<ItemStack> rList = new ArrayList<ItemStack>();
|
||||||
for (GT_MetaTileEntity_Hatch_Output tHatch : mOutputHatches) {
|
// for (GT_MetaTileEntity_Hatch_Output tHatch : mOutputHatches) {
|
||||||
if (isValidMetaTileEntity(tHatch)) {
|
// if (isValidMetaTileEntity(tHatch)) {
|
||||||
rList.add(tHatch.getBaseMetaTileEntity().getStackInSlot(1));
|
// rList.add(tHatch.getBaseMetaTileEntity().getStackInSlot(1));
|
||||||
}
|
// }
|
||||||
}
|
// }
|
||||||
for (GT_MetaTileEntity_Hatch_OutputBus tHatch : mOutputBusses) {
|
for (GT_MetaTileEntity_Hatch_OutputBus tHatch : mOutputBusses) {
|
||||||
if (isValidMetaTileEntity(tHatch)) {
|
if (isValidMetaTileEntity(tHatch)) {
|
||||||
for (int i = tHatch.getBaseMetaTileEntity().getSizeInventory() - 1; i >= 0; i--) {
|
for (int i = tHatch.getBaseMetaTileEntity().getSizeInventory() - 1; i >= 0; i--) {
|
||||||
|
@ -669,12 +669,12 @@ public abstract class GT_MetaTileEntity_MultiBlockBase extends MetaTileEntity {
|
||||||
|
|
||||||
public ArrayList<ItemStack> getStoredInputs() {
|
public ArrayList<ItemStack> getStoredInputs() {
|
||||||
ArrayList<ItemStack> rList = new ArrayList<ItemStack>();
|
ArrayList<ItemStack> rList = new ArrayList<ItemStack>();
|
||||||
for (GT_MetaTileEntity_Hatch_Input tHatch : mInputHatches) {
|
// for (GT_MetaTileEntity_Hatch_Input tHatch : mInputHatches) {
|
||||||
tHatch.mRecipeMap = getRecipeMap();
|
// tHatch.mRecipeMap = getRecipeMap();
|
||||||
if (isValidMetaTileEntity(tHatch) && tHatch.getBaseMetaTileEntity().getStackInSlot(0) != null) {
|
// if (isValidMetaTileEntity(tHatch) && tHatch.getBaseMetaTileEntity().getStackInSlot(0) != null) {
|
||||||
rList.add(tHatch.getBaseMetaTileEntity().getStackInSlot(0));
|
// rList.add(tHatch.getBaseMetaTileEntity().getStackInSlot(0));
|
||||||
}
|
// }
|
||||||
}
|
// }
|
||||||
for (GT_MetaTileEntity_Hatch_InputBus tHatch : mInputBusses) {
|
for (GT_MetaTileEntity_Hatch_InputBus tHatch : mInputBusses) {
|
||||||
tHatch.mRecipeMap = getRecipeMap();
|
tHatch.mRecipeMap = getRecipeMap();
|
||||||
if (isValidMetaTileEntity(tHatch)) {
|
if (isValidMetaTileEntity(tHatch)) {
|
||||||
|
|
Loading…
Reference in a new issue