Fixed Isidedness of Centrifuge closes #262

This commit is contained in:
gigabit101 2015-11-12 21:01:36 +00:00
parent a499cf2b09
commit da631dd25e

View file

@ -171,7 +171,7 @@ public class TileCentrifuge extends TilePowerAcceptor implements IWrenchable, IE
@Override
public boolean canInsertItem(int slotIndex, ItemStack itemStack, int side) {
if (slotIndex >= 1)
if (slotIndex >= 2)
return false;
return isItemValidForSlot(slotIndex, itemStack);
}