diff options
Diffstat (limited to 'source/packets/cPacket_MapChunk.cpp')
-rw-r--r-- | source/packets/cPacket_MapChunk.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/source/packets/cPacket_MapChunk.cpp b/source/packets/cPacket_MapChunk.cpp index 99afd9a40..e9ebf8355 100644 --- a/source/packets/cPacket_MapChunk.cpp +++ b/source/packets/cPacket_MapChunk.cpp @@ -49,9 +49,10 @@ cPacket_MapChunk::cPacket_MapChunk(cChunk * a_Chunk) AllData[iterator] = a_Chunk->GetBlock( x, y+i*16, z );
++iterator;
}
-
- //iterator+=2048*2; // Ignore light and stuff
}
+ //TODO: Send block metadata
+ //TODO: Send block light
+ //TODO: Send sky light
uLongf CompressedSize = compressBound( DataSize );
char * CompressedBlockData = new char[CompressedSize];
|