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

            return(chunk == null ? WorldConsts.MaxLight : chunk.GetBlockLight(x, y, z));
        }