Initial 1.11.2 update

This commit is contained in:
Electroblob
2018-02-07 21:15:50 +00:00
parent 67f6be0671
commit 3df5597dcc
368 changed files with 17234 additions and 15082 deletions
@@ -8,16 +8,15 @@ import net.minecraft.world.World;
public class ContainerPortableWorkbench extends ContainerWorkbench {
public ContainerPortableWorkbench(InventoryPlayer inventory, World world, BlockPos pos) {
public ContainerPortableWorkbench(InventoryPlayer inventory, World world, BlockPos pos){
super(inventory, world, pos);
}
// Overriden to stop the crafting gui from closing when there is no crafting table.
@Override
public boolean canInteractWith(EntityPlayer player)
{
return true;
}
public boolean canInteractWith(EntityPlayer player){
return true;
}
}