Merge pull request #834 from Pharabus/master
Made AutoWorkBench and hopper accept all items
This commit is contained in:
commit
08b91614af
2 changed files with 9 additions and 1 deletions
|
@ -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;
|
||||
|
||||
}
|
||||
}
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue