Merge pull request #834 from Pharabus/master

Made AutoWorkBench and hopper accept all items
This commit is contained in:
Krapht 2013-05-08 07:36:34 -07:00
commit 08b91614af
2 changed files with 9 additions and 1 deletions

View file

@ -106,4 +106,12 @@ public class TileHopper extends TileBuildCraft implements IInventory {
@Override
public void closeChest() {
}
@Override
public boolean isStackValidForSlot(int i, ItemStack itemstack)
{
return true;
}
}

View file

@ -504,6 +504,6 @@ public class TileAssemblyTable extends TileEntity implements IMachine, IInventor
public boolean isStackValidForSlot(int i, ItemStack itemstack)
{
// TODO Auto-generated method stub
return false;
return true;
}
}