}
public void setTo(ChunkCoordinates coords) {
worldObj.setBlock(coords.posX, coords.posY, coords.posZ, block, meta, 2);
TileEntity tile = this.tile == null ? null : TileEntity.createAndLoadEntity(this.tile);
worldObj.setTileEntity(coords.posX, coords.posY, coords.posZ, tile);
if (tile != null) {
tile.xCoord = coords.posX;
tile.yCoord = coords.posY;
tile.zCoord = coords.posZ;
tile.updateContainingBlockInfo();
}
//if (block != null)
// block.onNeighborBlockChange(worldObj, coords.posX, coords.posY, coords.posZ, ThaumicTinkerer.registry.getFirstBlockFromClass(BlockTransvectorDislocator.class));