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

            return(chunk.GetBlockState(x, y, z));
        }