Fix Metallurgic Infuser not auto-ejecting output

Fixes #2268

(it was trying to auto-eject energy cells :P)

I checked all of the other TileComponentEjector instances for similar errors, the rest of them look okay.
This commit is contained in:
David Vierra 2015-03-20 14:16:23 -10:00
parent 82c355cb86
commit 30684d6aef

View file

@ -104,7 +104,7 @@ public class TileEntityMetallurgicInfuser extends TileEntityNoisyElectricBlock i
inventory = new ItemStack[5];
upgradeComponent = new TileComponentUpgrade(this, 3);
ejectorComponent = new TileComponentEjector(this, configComponent.getOutputs(TransmissionType.ITEM).get(4));
ejectorComponent = new TileComponentEjector(this, configComponent.getOutputs(TransmissionType.ITEM).get(3));
}
@Override
@ -533,4 +533,4 @@ public class TileEntityMetallurgicInfuser extends TileEntityNoisyElectricBlock i
break;
}
}
}
}