Automation fixes, upgrades fixes.

This commit is contained in:
Dragon2488 2016-07-27 17:51:03 +07:00
parent be4f10b975
commit a5a9460707
14 changed files with 203 additions and 154 deletions

View file

@ -142,21 +142,15 @@ public class TileRecycler extends TilePowerAcceptor implements IWrenchable,IInve
return new ItemStack(ModBlocks.recycler, 1);
}
public boolean isComplete() {
return false;
}
// ISidedInventory
@Override
public int[] getSlotsForFace(EnumFacing side) {
return side == EnumFacing.DOWN ? new int[]{output} : new int[]{input1};
return new int[] {input1, output};
}
@Override
public boolean canInsertItem(int slotIndex, ItemStack itemStack, EnumFacing side) {
if (slotIndex == output)
return false;
return isItemValidForSlot(slotIndex, itemStack);
return slotIndex == input1;
}
@Override