This commit is contained in:
Modmuss50 2015-12-11 21:33:32 +00:00
parent 7c039f3105
commit 5c95b238fa

View file

@ -191,7 +191,7 @@ public class TileIndustrialElectrolyzer extends TilePowerAcceptor implements IWr
@Override
public boolean canInsertItem(int slotIndex, ItemStack itemStack, int side) {
if (slotIndex >= 1)
if (slotIndex > 1)
return false;
return isItemValidForSlot(slotIndex, itemStack);
}