public BlockType GetBlockType(int x, int y, int z)
        {
            Chunk chunk = ChunkManager.GetChunk(x, z);

            return(chunk == null ? BlockType.Air : chunk.GetBlockType(x, y, z));
        }