Fix extracting from the auto crafting table.

This commit is contained in:
modmuss50 2017-06-22 12:51:28 +01:00
parent b083d6b5fc
commit 8cf46ef273
No known key found for this signature in database
GPG key ID: 203A5ED4D3E48BEA

View file

@ -388,4 +388,9 @@ public class TileAutoCraftingTable extends TilePowerAcceptor implements IContain
public int[] getSlotsForFace(EnumFacing side) {
return new int[] { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 };
}
@Override
public boolean canExtractItem(int index, ItemStack stack, EnumFacing direction) {
return index == 9;
}
}